Commit 8be1ec0d092cec44dd1af16b95f9b7479f6b970e

Authored by DarkGod
1 parent 95f894a5

Limmir will be added to the party during the quest

... ... @@ -83,7 +83,12 @@ summon_limmir = function(self, who)
83 83 local limmir = game.zone:makeEntityByName(game.level, "actor", "LIMMIR")
84 84 limmir.limmir_target = {x=42, y=11}
85 85 limmir.limmir_target2 = {x=24, y=25}
  86 + limmir.no_inventory_access = true
  87 + limmir.remove_from_party_on_death = true
  88 + limmir.no_party_ai = true
86 89 game.zone:addEntity(game.level, limmir, "actor", 45, 1)
  90 +
  91 + game.party:addMember(limmir, {type="quest", title="Limmir (Quest)", temporary_level = true})
87 92 end
88 93
89 94 ritual_end = function(self)
... ...