Battle Mode wins award (player count * 2) points now

This commit is contained in:
TehRealSalt 2018-02-20 20:08:53 -05:00
parent 6d3d098c3f
commit cb593aa2b1
1 changed files with 1 additions and 1 deletions

View File

@ -3426,7 +3426,7 @@ void K_CheckBalloons(void)
if (playeringame[winnernum])
{
P_AddPlayerScore(&players[winnernum], numingame);
CONS_Printf(M_GetText("%s recieved %d points for winning!\n"), player_names[winnernum], numingame); // numingame/2 == 1 ? "" : "s"
CONS_Printf(M_GetText("%s recieved %d points for winning!\n"), player_names[winnernum], numingame*2);
}
for (i = 0; i < MAXPLAYERS; i++)