From ba61e84d16410c00e1ab6d5bedb5ec34bf77af85 Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Thu, 4 May 2023 00:50:39 -0700 Subject: [PATCH] Containment on Borough: fix players spawning in the Fountain zone --- scripts/zm/zgrief/zgrief_reimagined.gsc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/zm/zgrief/zgrief_reimagined.gsc b/scripts/zm/zgrief/zgrief_reimagined.gsc index 0e492e5f..1e64c228 100644 --- a/scripts/zm/zgrief/zgrief_reimagined.gsc +++ b/scripts/zm/zgrief/zgrief_reimagined.gsc @@ -2689,7 +2689,11 @@ containment_think() zone = level.zones[zone_name]; zone_name_to_lock = zone_name; - if (zone_name == "zone_mansion_lawn") + if (zone_name == "zone_street_fountain") + { + zone_name_to_lock = "zone_street_lighteast"; + } + else if (zone_name == "zone_mansion_lawn") { zone_name_to_lock = "zone_mansion"; }