diff options
author | MaeJong <mewiceclair@gmail.com> | 2017-04-19 00:05:34 +0200 |
---|---|---|
committer | MaeJong <mewiceclair@gmail.com> | 2017-04-19 00:05:34 +0200 |
commit | 02ce015ecc5a946cebdef6e25ad4da466c6c7a98 (patch) | |
tree | 64ea76d0c8b0fc928d9f5867f1a1d193e8186d97 /src | |
parent | b8db90f6dbf6c894ebc1bfccbbf61fdb27025bc1 (diff) |
g_adminListMinLvl.integer, dumbass
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_admin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c index c5f18d3..a7c4477 100644 --- a/src/game/g_admin.c +++ b/src/game/g_admin.c @@ -9259,7 +9259,7 @@ qboolean G_admin_report( gentity_t *ent, int skiparg ) { vic = &g_entities[ i ]; - if( G_admin_level( vic ) >= g_reportAdminListMinLvl ) + if( G_admin_level( vic ) >= g_reportAdminListMinLvl.integer ) { Q_strcat( admins, sizeof(admins), va( "%s^7 ", G_admin_get_adminname( vic ) ) ); } |