about summary refs log tree commit diff
path: root/src/game/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client')
-rw-r--r--src/game/client/components/menus.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/client/components/menus.cpp b/src/game/client/components/menus.cpp
index 7cac8bcd..8cfd211b 100644
--- a/src/game/client/components/menus.cpp
+++ b/src/game/client/components/menus.cpp
@@ -749,7 +749,8 @@ void MENUS::render_game(RECT main_view)
 				pass_area.x += yes_area.w;
 				pass_area.w -= yes_area.w;
 			}
-			else if(gameclient.voting->no)
+			
+			if(gameclient.voting->no)
 			{
 				RECT no_area = bars;
 				no_area.w *= gameclient.voting->no/(float)gameclient.voting->total;