Skip to content
Snippets Groups Projects
Commit 6cebacff authored by dg's avatar dg
Browse files

fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@5490 51575b47-30f0-44d4-a5cc-537603b46e54
parent 11c1b527
No related branches found
No related tags found
No related merge requests found
......@@ -151,6 +151,7 @@ function _M:useTalent(id, who, force_level, ignore_cd, force_target, silent)
local old_level
if force_level then old_level = who.talents[id]; who.talents[id] = force_level end
local ret = ab.activate(who, ab)
if ret == true then ret = {} end -- fix for badly coded talents
if force_level then who.talents[id] = old_level end
if not self:postUseTalent(ab, ret) then return end
......@@ -160,7 +161,7 @@ function _M:useTalent(id, who, force_level, ignore_cd, force_target, silent)
local old_level
if force_level then old_level = who.talents[id]; who.talents[id] = force_level end
local p = self.sustain_talents[id]
if p.__tmpvals then
if p and type(p) == "table" and p.__tmpvals then
for i = 1, #p.__tmpvals do
self:removeTemporaryValue(p.__tmpvals[i][1], p.__tmpvals[i][2])
end
......
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