From 56b85eb35320207ffdac2d2d6dae89fbaaefa1c0 Mon Sep 17 00:00:00 2001 From: kai Date: Fri, 1 May 2020 11:21:12 +0100 Subject: fix the copypasta, the vote has passed, not failed. --- src/game/g_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/g_main.c') diff --git a/src/game/g_main.c b/src/game/g_main.c index 942643f..b06e512 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -2618,7 +2618,7 @@ void CheckVote( void ) ( (double) votePassThreshold/100.0 ) ) ) { // execute the command, then remove the vote - trap_SendServerCommand( -1, va("print \"Vote ^Afailed ^7(^ZYes^7: %d | ^ANo^7: %d | ^dTurnout^7: %s%i%%^7)\n\"", + trap_SendServerCommand( -1, va("print \"Vote ^Zpassed ^7(^ZYes^7: %d | ^ANo^7: %d | ^dTurnout^7: %s%i%%^7)\n\"", level.voteYes, level.voteNo, turnoutCol, turnout ) ); G_LogPrintf( "Vote: Vote passed (%d - %d), turnout: %i%%\n", level.voteYes, level.voteNo, turnout ); level.voteExecuteTime = level.time + 3000; -- cgit