summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorM. Kristall <mkpdev@gmail.com>2009-10-26 00:32:44 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:05 +0000
commit2326c2fbcc57bf9533793cbd3dd3012522a9d113 (patch)
treea787ce7e0ee37a966a3ca5f262beceaa22d21efd /src/game
parent0fed3b1c32d99560482ea162b197531439df76e5 (diff)
* Fix !help only displaying information about custom commands when it should not
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_admin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c
index baf520ce..81c69a6a 100644
--- a/src/game/g_admin.c
+++ b/src/game/g_admin.c
@@ -2436,7 +2436,7 @@ qboolean G_admin_help( gentity_t *ent, int skiparg )
ADMBP_begin();
if( ( c = G_admin_command( cmd ) ) )
{
- if( !G_admin_permission( ent, c->flag ) )
+ if( G_admin_permission( ent, c->flag ) )
{
ADMBP( va( "^3!help: ^7help for '!%s':\n", c->command ) );
ADMBP( va( " ^3Description: ^7%s\n", c->desc ) );