From 3a45e79eb384cdbcf6ff4c4b9b438a386640ba84 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Sun, 8 Nov 2009 06:09:33 +0000 Subject: * Fix for another bug where setlevel sets to the wrong person (Undeference, Rezyn) --- src/game/g_admin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/game') diff --git a/src/game/g_admin.c b/src/game/g_admin.c index a81558ea..38511875 100644 --- a/src/game/g_admin.c +++ b/src/game/g_admin.c @@ -1270,7 +1270,8 @@ qboolean G_admin_setlevel( gentity_t *ent ) if( level.clients[ i ].pers.connected == CON_DISCONNECTED ) continue; - if( matches && level.clients[ i ].pers.admin == a ) + if( matches && level.clients[ i ].pers.admin && + level.clients[ i ].pers.admin == a ) { vic = &g_entities[ i ]; continue; -- cgit