mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-26 23:20:34 -05:00
Tranzit: zombies killed by the bus no longer respawn
This commit is contained in:
@ -731,4 +731,19 @@ busupdateplayers()
|
||||
|
||||
wait 0.05;
|
||||
}
|
||||
}
|
||||
|
||||
busplowkillzombieuntildeath()
|
||||
{
|
||||
self endon( "death" );
|
||||
|
||||
while ( isdefined( self ) && isalive( self ) )
|
||||
{
|
||||
if ( isdefined( self.health ) )
|
||||
{
|
||||
self dodamage( self.health + 666, self.origin, self, self, "none", "MOD_SUICIDE" );
|
||||
}
|
||||
|
||||
wait 1;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user