diff --git a/init.lua b/init.lua index 9306655..c9d389a 100644 --- a/init.lua +++ b/init.lua @@ -964,7 +964,11 @@ end local function create_corridor_system(main_cave_coords) -- Dirt room size - local size = pr:next(3, 9) + local maxsize = 7 + if chaos_mode then + maxsize = 9 + end + local size = pr:next(3, maxsize) --[[ Only build if starter coords are in the ground. Prevents corridors starting in mid-air or in liquids. ]]