1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-07-08 21:08:17 -05:00

Grief: remove enemy players triggering Claymores

This commit is contained in:
Jbleezy
2022-01-24 22:12:35 -08:00
parent 4e4e54810a
commit 4d6d97561a
3 changed files with 63 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#include scripts/zm/replaced/_zm_equipment;
#include scripts/zm/replaced/_zm_spawner;
#include scripts/zm/replaced/_zm_ai_basic;
#include scripts/zm/replaced/_zm_weap_claymore;
main()
{
@ -59,6 +60,7 @@ main()
replaceFunc(maps/mp/zombies/_zm_equipment::placed_equipment_think, scripts/zm/replaced/_zm_equipment::placed_equipment_think);
replaceFunc(maps/mp/zombies/_zm_spawner::head_should_gib, scripts/zm/replaced/_zm_spawner::head_should_gib);
replaceFunc(maps/mp/zombies/_zm_ai_basic::inert_wakeup, scripts/zm/replaced/_zm_ai_basic::inert_wakeup);
replaceFunc(maps/mp/zombies/_zm_weap_claymore::claymore_detonation, scripts/zm/replaced/_zm_weap_claymore::claymore_detonation);
}
init()