From 1816219a5742bf0f986aedb176c531c297b8ea51 Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Sat, 3 Oct 2009 12:01:44 +0000 Subject: * Right-align location field * Default teamoverlay off * Make generate-diff.sh slightly more portable --- src/game/g_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit