Skip to content
Snippets Groups Projects
Commit 4e28328b authored by DarkGod's avatar DarkGod
Browse files

Fixed self targetting with spells

parent 706ddd22
No related branches found
No related tags found
No related merge requests found
...@@ -99,11 +99,13 @@ function _M:targetMode(v, msg, co, typ) ...@@ -99,11 +99,13 @@ function _M:targetMode(v, msg, co, typ)
self.target:setActive(false) self.target:setActive(false)
if tostring(old) == "exclusive" then if tostring(old) == "exclusive" then
local x, y, e = self.target.target.x, self.target.target.y, self.target.target.entity
local fct = function(notok) local fct = function(notok)
if notok then if notok then
self.target.target.entity = nil self.target.target.entity = nil
self.target.target.x = nil self.target.target.x = nil
self.target.target.y = nil self.target.target.y = nil
x, y, e = nil, nil, nil
end end
self.key = self.normal_key self.key = self.normal_key
...@@ -111,6 +113,7 @@ function _M:targetMode(v, msg, co, typ) ...@@ -111,6 +113,7 @@ function _M:targetMode(v, msg, co, typ)
if self.target_co then if self.target_co then
local co = self.target_co local co = self.target_co
self.target_co = nil self.target_co = nil
self.target.target.x, self.target.target.y, self.target.target.entity = x, y, e
local ok, err = coroutine.resume(co, self.target.target.x, self.target.target.y, self.target.target.entity) local ok, err = coroutine.resume(co, self.target.target.x, self.target.target.y, self.target.target.entity)
if not ok and err then print(debug.traceback(co)) error(err) end if not ok and err then print(debug.traceback(co)) error(err) end
end 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