mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-22 05:00:54 -05:00
Nuke: counts as kills for player who grabbed it
This commit is contained in:
@ -297,6 +297,7 @@
|
||||
|
||||
### Nuke
|
||||
* Kills all zombies instantly
|
||||
* Counts as kills for player who grabbed it
|
||||
|
||||
### Carpenter
|
||||
* Removed
|
||||
|
@ -226,7 +226,7 @@ nuke_powerup( drop_item, player_team )
|
||||
zombies_nuked[ i ] playsound("evt_nuked");
|
||||
}
|
||||
zombies_nuked[ i ].deathpoints_already_given = 1;
|
||||
zombies_nuked[ i ] dodamage(zombies_nuked[i].health + 666, zombies_nuked[ i ].origin );
|
||||
zombies_nuked[ i ] dodamage(zombies_nuked[i].health + 666, zombies_nuked[ i ].origin, player );
|
||||
i++;
|
||||
}
|
||||
players = get_players( player_team );
|
||||
|
Reference in New Issue
Block a user