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

View file

@ -3426,7 +3426,7 @@ void K_CheckBalloons(void)
if (playeringame[winnernum]) if (playeringame[winnernum])
{ {
P_AddPlayerScore(&players[winnernum], numingame); 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++) for (i = 0; i < MAXPLAYERS; i++)