diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2009-10-03 12:01:44 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:37 +0000 |
commit | 1816219a5742bf0f986aedb176c531c297b8ea51 (patch) | |
tree | 3430c4d6f6b1c0ad5c22a8ad6026918332783a5b /src | |
parent | 534d680496218529c46367170bfa8b0fab3b98e3 (diff) |
* Right-align location field
* Default teamoverlay off
* Make generate-diff.sh slightly more portable
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index 726e8b54..eefc266b 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1110,7 +1110,7 @@ void ClientUserinfoChanged( int clientNum ) // teamInfo s = Info_ValueForKey( userinfo, "teamoverlay" ); - if( !*s || atoi( s ) != 0 ) + if( atoi( s ) != 0 ) client->pers.teamInfo = qtrue; else client->pers.teamInfo = qfalse; |