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

Nuke: remove grabber counting as kills

This commit is contained in:
Jbleezy
2023-03-13 22:05:47 -07:00
parent 92f519a662
commit d64455cff1
2 changed files with 1 additions and 2 deletions

View File

@ -295,7 +295,6 @@
### Nuke
* Kills all zombies instantly
* Counts as kills for player who grabbed it
### Carpenter
* Removed

View File

@ -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, player );
zombies_nuked[ i ] dodamage(zombies_nuked[i].health + 666, zombies_nuked[ i ].origin );
i++;
}
players = get_players( player_team );