1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 15:17:57 -05:00

Nuketown: fix Cul-de-sac zone player respawns

This commit is contained in:
Jbleezy
2024-01-15 21:14:24 -08:00
parent 1609eab4bb
commit ac924d1f36
2 changed files with 6 additions and 2 deletions

View File

@ -2592,7 +2592,11 @@ containment_think()
zone_name_to_lock = zone_name;
if (zone_name == "zone_street_fountain")
if (zone_name == "culdesac_yellow_zone")
{
zone_name_to_lock = "culdesac_green_zone";
}
else if (zone_name == "zone_street_fountain")
{
zone_name_to_lock = "zone_street_lighteast";
}