summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorM. Kristall <mkpdev@gmail.com>2010-03-17 23:57:04 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:31 +0000
commit5c68e66953a13593e1272795ec07c55b27050af8 (patch)
tree45bb0cb4d5a7f5c4034c0efac9bdbd5dc3a46627 /src
parent40e08de1ca0b9e4cde7493fff3e8f2a73e1900f7 (diff)
* No-votes were not being handled properly
Diffstat (limited to 'src')
-rw-r--r--src/game/g_cmds.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c
index e435c999..097fa836 100644
--- a/src/game/g_cmds.c
+++ b/src/game/g_cmds.c
@@ -1294,8 +1294,10 @@ void Cmd_Vote_f( gentity_t *ent )
va( "print \"%s: vote cast\n\"", cmd ) );
trap_Argv( 1, vote, sizeof( vote ) );
- ent->client->pers.vote |=
- ( tolower( vote[ 0 ] ) == 'y' || vote[ 0 ] == '1' ) << team;
+ if( vote[ 0 ] == 'y' )
+ ent->client->pers.vote |= 1 << team;
+ else
+ ent->client->pers.vote &= ~( 1 << team );
G_Vote( ent, team, qtrue );
}