From 0f30dd6f8297037b8b73f47392ff790bef135f1f Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Fri, 12 Aug 2022 12:47:50 -0700 Subject: [PATCH] Encounter Pro: disabled Claymores --- README.md | 3 ++- scripts/zm/_zm_reimagined.gsc | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 59675650..92b4b188 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,7 @@ ### Who's Who * Gain all other perks the player had before going down when entering Who's Who mode * Revive twice as fast when in Who's Who mode -* No longer gives the player claymores when entering Who's Who mode if the player purchased claymores +* No longer gives the player Claymores when entering Who's Who mode if the player purchased Claymores ### Electric Cherry * Removed cooldown after being used multiple times in a row @@ -523,4 +523,5 @@ * Removed powerups * Removed buildables * Removed unlimited sprint +* Disabled Claymores * Power Station: disabled door to Power Station zone \ No newline at end of file diff --git a/scripts/zm/_zm_reimagined.gsc b/scripts/zm/_zm_reimagined.gsc index 139b1e41..3cc4dec6 100644 --- a/scripts/zm/_zm_reimagined.gsc +++ b/scripts/zm/_zm_reimagined.gsc @@ -2161,6 +2161,11 @@ wallbuy_location_changes() add_wallbuy("bowie_knife_zm"); } } + + if(level.scr_zm_ui_gametype == "zgrief" && is_true(level.scr_zm_ui_gametype_pro)) + { + remove_wallbuy("claymore_zm"); + } } }