diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2018-11-14 22:44:00 +0100 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2018-11-16 00:08:22 +0100 |
commit | aad432d283fce8e7b7a1c189282570ec663b0b3c (patch) | |
tree | 67c37083506da60870ce5a6da0efcbf32f04b379 /src | |
parent | 76e008b69d12c699bf86598d43e4d8cae0c8df27 (diff) |
Fix broken newlines in logs.
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c index c0dd33f..d5f88ff 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -2742,7 +2742,7 @@ static void AntistackHandicap(void) level.humanHandicap = 1.0f; } - G_LogPrintf("Antistack: %d %d %f %s %f", alienKills, humanKills, + G_LogPrintf("Antistack: %d %d %f %s %f\n", alienKills, humanKills, bias, (human_bias ? "human" : "alien"), handicap); if (g_antistack.integer > 0) trap_SendServerCommand(-1, va("print \"^1Teams are uneven. %s income is decreased by %.0f percent.\n\"", |