Fear Talent bugs (SVN)

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
edge2054
Retired Ninja
Posts: 3756
Joined: Fri May 28, 2010 4:38 pm

Fear Talent bugs (SVN)

#1 Post by edge2054 »

The long description on the Panic timed effect throws an error, line 1129 should be in mental timed effects should be..

Code: Select all

long_desc = function(self, eff) return ("The target has been panicked by %s, causing them to have a %d%% chance of fleeing in terror instead of acting."):format(eff.source.name, eff.chance) end,
The bigger issue though is that Panic calls a function that doesn't seem to exist for the player, moveDirection. I tried putting the talent on an NPC and it resulted in a lot of lua errors.

The long description for the Tormented timed effect is also throwing errors.

line 1044 mental timed effects should be...

Code: Select all

long_desc = function(self, eff) return ("The target's mind is being tormented, causing %d apparitions to manifest and attack the target, inflicting %d mind damage each before disappearing."):format(eff.count, eff.damage) end,

Post Reply