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

Fire Staff: add back random gib

This commit is contained in:
Jbleezy
2023-03-30 21:42:47 -07:00
parent 9adbd87221
commit c6b3dc474b

View File

@ -29,7 +29,10 @@ flame_damage_fx( damageweapon, e_attacker, pct_damage = 1.0 )
{
self do_damage_network_safe( e_attacker, self.health, damageweapon, "MOD_BURNED" );
self thread zombie_gib_guts();
if ( cointoss() )
self thread zombie_gib_all();
else
self thread zombie_gib_guts();
return;
}