Skip to content
Snippets Groups Projects
Commit 889290c7 authored by DarkGod's avatar DarkGod
Browse files

Fixed Infinite Dungeon having most creatures poison immune

parent 38281592
No related branches found
No related tags found
No related merge requests found
......@@ -67,5 +67,6 @@ end
for i, zone in ipairs(fs.list("/data/zones/")) do
local file = "/data/zones/"..zone.."/npcs.lua"
if fs.exists(file) and not zone:find("infinite%-dungeon") then loadOuter(file) end
-- if fs.exists(file) and not zone:find("infinite%-dungeon") then loadOuter(file) end
if fs.exists(file) and not zone:find("infinite%-dungeon") and not zone:find("noxious%-caldera") then loadOuter(file) end --Bug fix
end
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