From 2b080117b91f18cd0a1d7ffaac1034aac6b64dd2 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 14 Feb 2019 06:55:09 +0100 Subject: [PATCH] Decrease dirt room size --- init.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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. ]]