Skip to content
Snippets Groups Projects
Commit 2e260078 authored by DarkGod's avatar DarkGod
Browse files

* Fixed VaultLevel generator to not abide "required_rooms" of parent zone

parent c74bf5f8
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@ end
function _M:runReal()
self.delayed_log_damage = {}
self.delayed_log_messages = {}
self.calendar = Calendar.new("/data/calendar_allied.lua", "Today is the %s %s of the %s year of the Age of Ascendancy of Maj'Eyal.\nThe time is %02d:%02d.", 122, 167, 11)
self.calendar = Calendar.new("/data/calendar_allied.lua", "Today is the % %s of the %s year of the Age of Ascendancy of Maj'Eyal.\nThe time is %02d:%02d.", 122, 167, 11)
self.uiset:activate()
......@@ -1697,7 +1697,7 @@ function _M:setupCommands()
print("===============")
end end,
[{"_g","ctrl"}] = function() if config.settings.cheat then
self:changeLevel(6, "orcs+palace-fumes")
self:changeLevel(1, "orcs+steam-quarry")
do return end
local o = game.zone:makeEntity(game.level, "object", {subtype="sling", random_object=true}, nil, true)
if o then
......
......@@ -28,6 +28,7 @@ module(..., package.seeall, class.inherit(engine.Generator, RoomsLoader))
function _M:init(zone, map, level, data)
engine.Generator.init(self, zone, map, level)
data.rooms = {"greater_vault"}
data.required_rooms = nil
self.data = data
self.grid_list = zone.grid_list
RoomsLoader.init(self, data)
......
......@@ -45,6 +45,8 @@ local changer = function(id)
local basemap = table.clone(game.level.data.generator.map, true)
basemap.zoneclass = nil
basemap.rooms = nil
basemap.required_rooms = nil
local zone = mod.class.Zone.new(id, {
name = "Hidden Vault - "..(game.old_zone_name or "???"),
......
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