Page 1 of 1

Traps (Possibly a feature)

Posted: Mon Nov 01, 2010 3:26 am
by edge2054
I noticed all the traps use code similar to this for temporary.

Code: Select all

temporary = 5 + self:getTalentLevel(t)
Considering traps always have a talent level of 1 (as far as I can tell) this seems like it should either be...

Code: Select all

temporary = 5 + self:getTalentLevel(self.T_TRAP_MASTERY)
or just

temporary = 6

Then again maybe I'm missing a way to increase the level of the trapping talents in which case I'm way off base but since everything else works off self:getTalentLevel(self.T_TRAP_MASTERY) I'm guessing the trap life span was meant to scale as well.

Re: Traps (Possibly a feature)

Posted: Mon Nov 01, 2010 1:23 pm
by darkgod
bug; fixed thanks

Re: Traps (Possibly a feature)

Posted: Mon Nov 01, 2010 11:50 pm
by edge2054
Got another possible oversight for you DG.

The traps lack the code that's included in glyphs that prevents you from placing them on top of an existent trap. When the trap you place reaches the end of it's duration the tile will be trap free.