summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game/g_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c
index 37d4b3e..a403a4e 100644
--- a/src/game/g_main.c
+++ b/src/game/g_main.c
@@ -2724,7 +2724,7 @@ static qboolean AntistackHandicap(void)
G_LogPrintf("Antistack: %d %d %f %s %f", level.alienKills, level.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.\"",
+ trap_SendServerCommand(-1, va("print \"^1Teams are uneven. %s income is decreased by %.0f percent.\n\"",
(human_bias ? "Human" : "Alien"),
(1.0f - handicap) * 100.0f));
@@ -2753,7 +2753,7 @@ static void CheckAntistack(void)
level.alienKills, level.humanKills);
if (level.antistackWasHandicapping && g_antistack.integer > 0)
- trap_SendServerCommand(-1, "^1Teams are no longer uneven.");
+ trap_SendServerCommand(-1, "print \"^1Teams are no longer uneven.\n\"");
level.antistackWasHandicapping = qfalse;
}