1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-11 23:57:59 -05:00

Zombie Shield: remove zombie death explosion

This commit is contained in:
Jbleezy
2024-04-12 15:56:10 -07:00
parent 772a713a39
commit 219cf0977a
2 changed files with 2 additions and 1 deletions

View File

@ -803,6 +803,7 @@
* Added shield health bar on HUD
* Awards points for kills and damage
* Can be repaired at buildable table (same cost as purchase cost)
* Zombies that are on fire no longer explode on death
* Can be destroyed by player damage when deployed
* Destroyed sound plays when player is holding
* Deployed damage sound plays on shield instead of player

View File

@ -1406,7 +1406,7 @@ actor_damage_override(inflictor, attacker, damage, flags, meansofdeath, weapon,
return damage;
}
if (issubstr(weapon, "tazer_knuckles_zm") || weapon == "jetgun_zm")
if (issubstr(weapon, "tazer_knuckles_zm") || weapon == "jetgun_zm" || weapon == "riotshield_zm")
{
self.knuckles_extinguish_flames = 1;
}