From f44fffabb6f7e8dcf701adbd6d379cd4620a7f37 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Sat, 3 Oct 2009 12:32:56 +0000 Subject: * (bug 3964) Fix votedisplaystrings printing as blank in some circumstances (thanks Rezyn for 1/2 of this fix) --- src/game/g_main.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/game') diff --git a/src/game/g_main.c b/src/game/g_main.c index 88b73c95..16508171 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -670,10 +670,13 @@ static void G_ClearVotes( void ) { level.voteTime = 0; trap_SetConfigstring( CS_VOTE_TIME, "" ); + trap_SetConfigstring( CS_VOTE_STRING, "" ); level.teamVoteTime[ 0 ] = 0; trap_SetConfigstring( CS_TEAMVOTE_TIME, "" ); + trap_SetConfigstring( CS_TEAMVOTE_STRING, "" ); level.teamVoteTime[ 1 ] = 0; trap_SetConfigstring( CS_TEAMVOTE_TIME + 1, "" ); + trap_SetConfigstring( CS_TEAMVOTE_STRING + 1, "" ); } /* @@ -2247,6 +2250,7 @@ void CheckVote( void ) level.voteTime = 0; trap_SetConfigstring( CS_VOTE_TIME, "" ); + trap_SetConfigstring( CS_VOTE_STRING, "" ); } @@ -2295,6 +2299,7 @@ void CheckTeamVote( team_t team ) level.teamVoteTime[ cs_offset ] = 0; trap_SetConfigstring( CS_TEAMVOTE_TIME + cs_offset, "" ); + trap_SetConfigstring( CS_TEAMVOTE_STRING + cs_offset, "" ); } -- cgit