Skip to content
Snippets Groups Projects
Commit 386dff6b authored by DarkGod's avatar DarkGod
Browse files

Fixed talents breaking on events not correctly working in some edge cases...

Fixed talents breaking on events not correctly working in some edge cases (this should fix Embers of Rage steam drain bug)
parent 73a2061d
No related branches found
No related tags found
No related merge requests found
......@@ -195,11 +195,13 @@ function _M:useTalent(id, who, force_level, ignore_cd, force_target, silent, no_
self:removeTemporaryValue(p.__tmpvals[i][1], p.__tmpvals[i][2])
end
end
p.__tmpvals = nil
if p and type(p) == "table" and p.__tmpparticles then
for i = 1, #p.__tmpparticles do
self:removeParticles(p.__tmpparticles[i])
end
end
p.__tmpparticles = nil
local ret = ab.deactivate(who, ab, p)
self.deactivating_sustain_talent = ab.id
......
......@@ -5148,7 +5148,6 @@ function _M:postUseTalent(ab, ret, silent)
else
self:attr(res_def.regen_prop, -cost)
end
end
end
end
......@@ -5190,7 +5189,6 @@ function _M:postUseTalent(ab, ret, silent)
else
self:attr(res_def.regen_prop, cost)
end
end
end
end
......@@ -5262,7 +5260,10 @@ function _M:postUseTalent(ab, ret, silent)
for tid, _ in pairs(self.sustain_talents) do
local t = self:getTalentFromId(tid)
if t and t.callbackBreakOnTalent then
self:callTalent(tid, "callbackBreakOnTalent", ab)
-- Break things at the end, only if they are still on
game:onTickEnd(function()
if self.sustain_talents[t.id] then self:callTalent(tid, "callbackBreakOnTalent", ab) end
end)
end
end
......
......@@ -899,6 +899,7 @@ function _M:automaticTalents()
end
end
end)
print("[AUTOMATIC TALENTS] : ")
table.print(uses)
for _, use in ipairs(uses) do
use.fct()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment