From 46fa88235423112d1249bb081ba53bc99f772349 Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Tue, 5 Mar 2002 02:08:16 +0000 Subject: [PATCH] Fixed Unknown client command: Roundlimit bug --- reaction/game/g_teamplay.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reaction/game/g_teamplay.c b/reaction/game/g_teamplay.c index fa17ed40..a6ebeceb 100644 --- a/reaction/game/g_teamplay.c +++ b/reaction/game/g_teamplay.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.29 2002/03/05 02:08:16 jbravo +// Fixed Unknown client command: Roundlimit bug +// // Revision 1.28 2002/03/03 23:51:45 jbravo // Final fixes for anims at spawn and a knife bug. // @@ -443,7 +446,7 @@ int WonGame(int winner) return 1; } else { - trap_SendServerCommand( -1, "Roundlimit hit.\n\"" ); + trap_SendServerCommand( -1, va("cp \"Roundlimit hit.\n\"")); level.team_round_going = level.team_round_countdown = level.team_game_going = 0; return 1; }