diff options
Diffstat (limited to 'src/game/g_client.c')
-rw-r--r-- | src/game/g_client.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index f0eaeeb0..78440563 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1221,15 +1221,15 @@ char *ClientConnect( int clientNum, qboolean firstTime ) value = Info_ValueForKey( userinfo, "cl_guid" ); Q_strncpyz( client->pers.guid, value, sizeof( client->pers.guid ) ); + value = Info_ValueForKey( userinfo, "ip" ); + Q_strncpyz( client->pers.ip, value, sizeof( client->pers.ip ) ); + // check for admin ban - if( G_admin_ban_check( userinfo, reason, sizeof( reason ) ) ) + if( G_admin_ban_check( ent, reason, sizeof( reason ) ) ) { return va( "%s", reason ); } - value = Info_ValueForKey( userinfo, "ip" ); - Q_strncpyz( client->pers.ip, value, sizeof( client->pers.ip ) ); - // check for a password value = Info_ValueForKey( userinfo, "password" ); |