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"); + } } }