From d2db81bf9bfdc6dc4b349f9e6de529bd5ce99515 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 6 Jan 2018 03:35:44 +0000 Subject: [PATCH] Reduce number of chests --- mods/ctf_map/maps/03_caverns.conf | 2 -- mods/ctf_map/schem_map.lua | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/mods/ctf_map/maps/03_caverns.conf b/mods/ctf_map/maps/03_caverns.conf index 582b989..c18eef9 100644 --- a/mods/ctf_map/maps/03_caverns.conf +++ b/mods/ctf_map/maps/03_caverns.conf @@ -8,10 +8,8 @@ team.1.color = red team.1.pos = -20,-2,65 team.1.chests1 = -63,-4,26 team.1.chests2 = -6,20,73 -team.1.num_chests = 15 team.2 = blue team.2.color = blue team.2.pos = -48,0,-83 team.2.chests1 = -72,-4,-97 team.2.chests2 = 7,15,-33 -team.2.num_chests = 15 diff --git a/mods/ctf_map/schem_map.lua b/mods/ctf_map/schem_map.lua index 26241e8..e73f95e 100644 --- a/mods/ctf_map/schem_map.lua +++ b/mods/ctf_map/schem_map.lua @@ -95,7 +95,7 @@ function ctf_match.load_map_meta(idx, name) chests = { from = chests1, to = chests2, - n = tonumber(meta:get("team." .. i .. ".num_chests") or "30"), + n = tonumber(meta:get("team." .. i .. ".num_chests") or "18"), }, }