From a8242fd7e3f7c2b288cbd066b333db34df0829cf Mon Sep 17 00:00:00 2001 From: FlaminSarge Date: Sat, 26 May 2012 16:25:05 -0400 Subject: [PATCH] Fixed client console vote progress not displaying in some cases (bug 5290, r=psychonic). --- core/MenuVoting.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/MenuVoting.cpp b/core/MenuVoting.cpp index 8b69fd8a..fe29c593 100644 --- a/core/MenuVoting.cpp +++ b/core/MenuVoting.cpp @@ -518,7 +518,7 @@ void VoteMenuHandler::OnMenuSelect(IBaseMenu *menu, int client, unsigned int ite m_Votes[item]++; m_NumVotes++; - if (sm_vote_chat.GetBool() || sm_vote_console.GetBool()) + if (sm_vote_chat.GetBool() || sm_vote_console.GetBool() || sm_vote_client_console.GetBool()) { static char buffer[1024]; ItemDrawInfo dr;