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

Loremaster escorts provide 2 stat points

git-svn-id: http://svn.net-core.org/repos/t-engine4@6280 51575b47-30f0-44d4-a5cc-537603b46e54
parent 02353e9b
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ newAI("move_simple", function(self)
if self.ai_target.actor then
local tx, ty
-- Move towards the last seen position if we have one
if self.ai_state.target_last_seen then
if self.ai_state.target_last_seen and type(self.ai_state.target_last_seen) == "table" then
tx, ty = self.ai_state.target_last_seen.x, self.ai_state.target_last_seen.y
else
tx, ty = self:aiSeeTargetPos(self.ai_target.actor)
......
......@@ -195,12 +195,12 @@ local reward_types = {
[Talents.T_MIND_SEAR] = 1,
},
stats = {
[Stats.STAT_STR] = 1,
[Stats.STAT_DEX] = 1,
[Stats.STAT_MAG] = 1,
[Stats.STAT_WIL] = 1,
[Stats.STAT_CUN] = 1,
[Stats.STAT_CON] = 1,
[Stats.STAT_STR] = 2,
[Stats.STAT_DEX] = 2,
[Stats.STAT_MAG] = 2,
[Stats.STAT_WIL] = 2,
[Stats.STAT_CUN] = 2,
[Stats.STAT_CON] = 2,
},
},
}
......
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