diff --git a/game/engines/default/engine/Zone.lua b/game/engines/default/engine/Zone.lua index cc350705b829a77d0842f01556c6ee7b99086e5f..0e5ac929cdbd09328ee16e1853cf91906562f310 100644 --- a/game/engines/default/engine/Zone.lua +++ b/game/engines/default/engine/Zone.lua @@ -603,6 +603,8 @@ function _M:load(dynamic) ret = false for k, e in pairs(data) do self[k] = e end if self.on_loaded then self:on_loaded() end + else + for k, e in pairs(data) do self[k] = e end end return ret end diff --git a/game/modules/tome/data/chats/corruptor-quest.lua b/game/modules/tome/data/chats/corruptor-quest.lua index bf0913309deb3a90205260902f66869773129cd6..b81079ace63209dc1660ef94191c82f8178cf513 100644 --- a/game/modules/tome/data/chats/corruptor-quest.lua +++ b/game/modules/tome/data/chats/corruptor-quest.lua @@ -58,7 +58,7 @@ I will open a portal to Zigur and the massacre shall begin!]], answers = { {"I am ready!", action=function(npc, player) if game.zone.short_name ~= "mark-spellblaze" then return "quest3" end - npc.invulnerable = 1 + npc:disappear() player:grantQuest("anti-antimagic") end}, }