mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-19 07:51:19 +00:00
Battle Mode wins award (player count * 2) points now
This commit is contained in:
parent
6d3d098c3f
commit
cb593aa2b1
1 changed files with 1 additions and 1 deletions
|
@ -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++)
|
||||||
|
|
Loading…
Reference in a new issue