From ac071a7712cb6a76305ce5b89981597fcb22a935 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Sun, 9 Oct 2011 19:12:26 +0000 Subject: [PATCH] Only new talent start on cooldown when learnt, not existing ones git-svn-id: http://svn.net-core.org/repos/t-engine4@4544 51575b47-30f0-44d4-a5cc-537603b46e54 --- game/modules/tome/dialogs/LevelupDialog.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/modules/tome/dialogs/LevelupDialog.lua b/game/modules/tome/dialogs/LevelupDialog.lua index 335be96cec..c754896d8e 100644 --- a/game/modules/tome/dialogs/LevelupDialog.lua +++ b/game/modules/tome/dialogs/LevelupDialog.lua @@ -490,7 +490,7 @@ function _M:finish() if not self.on_birth then for t_id, _ in pairs(self.talents_learned) do local t = self.actor:getTalentFromId(t_id) - if not self.actor:isTalentCoolingDown(t) then self.actor:startTalentCooldown(t) end + if not self.actor:isTalentCoolingDown(t) and not self.actor_dup:knowTalent(t_id) then self.actor:startTalentCooldown(t) end end end -- GitLab