From 40f6740742c7d967038abdd5a582d8b50712d1b2 Mon Sep 17 00:00:00 2001 From: oy Date: Mon, 17 Jan 2011 12:56:49 +0100 Subject: fixed few spelling mistakes and disabled an unused command --- src/game/server/gamecontroller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/server/gamecontroller.cpp') diff --git a/src/game/server/gamecontroller.cpp b/src/game/server/gamecontroller.cpp index 3e8af96c..23a5e171 100644 --- a/src/game/server/gamecontroller.cpp +++ b/src/game/server/gamecontroller.cpp @@ -626,7 +626,7 @@ bool IGameController::CheckTeamBalance() char aBuf[256]; if(absolute(aT[0]-aT[1]) >= 2) { - str_format(aBuf, sizeof(aBuf), "Team is NOT balanced (red=%d blue=%d)", aT[0], aT[1]); + str_format(aBuf, sizeof(aBuf), "Teams are NOT balanced (red=%d blue=%d)", aT[0], aT[1]); GameServer()->Console()->Print(IConsole::OUTPUT_LEVEL_DEBUG, "game", aBuf); if(GameServer()->m_pController->m_UnbalancedTick == -1) GameServer()->m_pController->m_UnbalancedTick = Server()->Tick(); @@ -634,7 +634,7 @@ bool IGameController::CheckTeamBalance() } else { - str_format(aBuf, sizeof(aBuf), "Team is balanced (red=%d blue=%d)", aT[0], aT[1]); + str_format(aBuf, sizeof(aBuf), "Teams are balanced (red=%d blue=%d)", aT[0], aT[1]); GameServer()->Console()->Print(IConsole::OUTPUT_LEVEL_DEBUG, "game", aBuf); GameServer()->m_pController->m_UnbalancedTick = -1; return true; -- cgit 1.4.1