1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-13 00:28:03 -05:00

Encounter Pro: disabled Claymores

This commit is contained in:
Jbleezy
2022-08-12 12:47:50 -07:00
parent a907ad7dcb
commit 0f30dd6f82
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

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