diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2010-12-05 04:05:21 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:43 +0000 |
commit | 537a0684057830ae9c96c921c2a0237f14c951be (patch) | |
tree | 37738e75b561f680d3b3a6b7abd2006491641edc /src/game | |
parent | 38b856f74c691f52182d13831810741cb7e9598f (diff) |
* (bug 4268) Disable vote bind instructions when tutorial mode is off
* (bug 4811) Fix colour bleed in vote reasons (Brian "Teapot" Shannon)
* Decolour vote caller for consistency with the other vote elements
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_cmds.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index c6052eb4..175bd8b2 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -1093,14 +1093,17 @@ void Cmd_CallVote_f( gentity_t *ent ) vote[ MAX_TOKEN_CHARS ], arg[ MAX_TOKEN_CHARS ]; char name[ MAX_NAME_LENGTH ] = ""; - char *reason; + char caller[ MAX_NAME_LENGTH ] = ""; + char reason[ MAX_TOKEN_CHARS ]; + char *creason; int clientNum = -1; team_t team; trap_Argv( 0, cmd, sizeof( cmd ) ); trap_Argv( 1, vote, sizeof( vote ) ); trap_Argv( 2, arg, sizeof( arg ) ); - reason = ConcatArgs( 3 ); + creason = ConcatArgs( 3 ); + G_DecolorString( creason, reason, sizeof( reason ) ); if( !Q_stricmp( cmd, "callteamvote" ) ) team = ent->client->pers.teamSelection; @@ -1416,13 +1419,15 @@ void Cmd_CallVote_f( gentity_t *ent ) level.voteDisplayString[ team ] ) ); } + G_DecolorString( ent->client->pers.netname, caller, sizeof( caller ) ); + level.voteTime[ team ] = level.time; trap_SetConfigstring( CS_VOTE_TIME + team, va( "%d", level.voteTime[ team ] ) ); trap_SetConfigstring( CS_VOTE_STRING + team, level.voteDisplayString[ team ] ); trap_SetConfigstring( CS_VOTE_CALLER + team, - ent->client->pers.netname ); + caller ); ent->client->pers.namelog->voteCount++; ent->client->pers.vote |= 1 << team; |