Skip to content
Snippets Groups Projects
Commit 1ce35c6e authored by Chris Davidson's avatar Chris Davidson
Browse files

Fix Aeryn potentially not spawning in the final fight

parent daff981c
No related branches found
No related tags found
1 merge request!5111.6 Misc
......@@ -34,7 +34,7 @@ end
local function aeryn_dead(npc, player) return not aeryn_alive(npc, player) end
local function aeryn_comes(npc, player)
local x, y = util.findFreeGrid(player.x, player.y, 1, true, {[engine.Map.ACTOR]=true})
local x, y = util.findFreeGrid(player.x, player.y, 5, true, {[engine.Map.ACTOR]=true})
local aeryn = game.zone:makeEntityByName(game.level, "actor", "HIGH_SUN_PALADIN_AERYN")
if aeryn then
game.zone:addEntity(game.level, aeryn, "actor", x, y)
......
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