Skip to content
Snippets Groups Projects
Commit 22beccde authored by DarkGod's avatar DarkGod
Browse files

load old data

if tactical AI finds a talent taht does exist, do not explode
parent a1aafeba
No related branches found
No related tags found
No related merge requests found
......@@ -247,6 +247,10 @@ function _M:installOldGame(version_string)
dls[#dls+1] = {url="http://te4.org/dl/modules/tome/tome-1.2.5-gfx.team", name="tome-1.2.5-gfx.team"}
dls[#dls+1] = {url="http://te4.org/dl/modules/tome/tome-1.2.5-music.team", name="tome-1.2.5-music.team"}
dls[#dls+1] = {url="http://te4.org/dl/modules/tome/tome-1.2.5.team", name="tome-1.2.5.team"}
elseif version_string == "tome-1.3.3" then
dls[#dls+1] = {url="http://te4.org/dl/modules/tome/tome-1.3.3-gfx.team", name="tome-1.3.3-gfx.team"}
dls[#dls+1] = {url="http://te4.org/dl/modules/tome/tome-1.3.3-music.team", name="tome-1.3.3-music.team"}
dls[#dls+1] = {url="http://te4.org/dl/modules/tome/tome-1.3.3.team", name="tome-1.3.3.team"}
end
if #dls == 0 then
......
......@@ -63,11 +63,10 @@ newAI("use_tactical", function(self)
local has_los = aitarget and self:hasLOS(ax, ay)
local self_compassion = (self.ai_state.self_compassion == false and 0) or self.ai_state.self_compassion or 5
local ally_compassion = (self.ai_state.ally_compassion == false and 0) or self.ai_state.ally_compassion or 1
for tid, lvl in pairs(self.talents) do
for tid, lvl in pairs(self.talents) do local t = self:getTalentFromId(tid) if t then
local aitarget = aitarget
local ax, ay = ax, ay
local target_dist = target_dist
local t = self:getTalentFromId(tid)
if t.onAIGetTarget then
_, _, aitarget = t.onAIGetTarget(self, t)
......@@ -195,7 +194,7 @@ newAI("use_tactical", function(self)
end
end
end
end
end end
if ok then
local want = {}
local need_heal = 0
......
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