Page 1 of 1

[b43b][Major] Lua error on willful tormenter deactivation

Posted: Thu Nov 15, 2012 12:59 am
by Suslik
Create new character in recently released 43b(the that came after 43a), select cornac corruptor, choose torment tree and put a point into "willful tormenter" skill. Activate it. Upon deactivation you get an error in ActorTalents.lua:181: /engine/Entity.lua:693: table index is nil.

Makes it impossible to play as a corruptor since the ability should be deactivated every time you levelup, but you just can't exit levelup screen due to this error. Hope this will get fixed soon.

Re: [b43b][Major] Lua error on willful tormenter deactivatio

Posted: Thu Nov 15, 2012 1:53 am
by Suslik
and i have found the reason. there was a recent change in data/talents/corruptions/torment.lua, line 31:

Code: Select all

			vim = self:addTemporaryValue("max_vim", self:getTalentLevel(t) * 15),
was replaced with

Code: Select all

			max_vim = self:addTemporaryValue("max_vim", self:getTalentLevel(t) * 15),
rolling the change back seems to solve the problem.

Re: [b43b][Major] Lua error on willful tormenter deactivatio

Posted: Thu Nov 15, 2012 6:46 pm
by darkgod
oups :)