From 91e023bba4cb78afa6c894a8ce642ca8e26ca803 Mon Sep 17 00:00:00 2001 From: Shibari <ShibariTOME@Gmail.com> Date: Tue, 22 Oct 2019 16:35:10 -0400 Subject: [PATCH] Fix difficulty double dipping talents that grant other talents and causing undefined behavior If a talent grants another talent it'll be inserted into the same table the difficulty bonus is iterating over and who knows what gets increased then. --- game/modules/tome/class/NPC.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/game/modules/tome/class/NPC.lua b/game/modules/tome/class/NPC.lua index 28f70f0701..f9b1068328 100644 --- a/game/modules/tome/class/NPC.lua +++ b/game/modules/tome/class/NPC.lua @@ -451,7 +451,11 @@ function _M:addedToLevel(level, x, y) -- increase level of innate talents -- Note: talent levels from added classes are not adjusted for difficulty directly -- This means that the NPC's innate talents are generally higher level, preserving its "character" - for tid, lev in pairs(self.talents) do + + -- Copy the table first so we don't insert talents that teach talents during iteration or double dip their scaling + local talents = table.clone(self.talents) + + for tid, lev in pairs(talents) do local t = self:getTalentFromId(tid) if t.points ~= 1 then self:learnTalent(tid, true, math.floor(lev*(talent_mult - 1))) -- GitLab