diff options
Diffstat (limited to 'src/core/os_admin.c')
-rw-r--r-- | src/core/os_admin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/os_admin.c b/src/core/os_admin.c index 91b5b8f4b..955751629 100644 --- a/src/core/os_admin.c +++ b/src/core/os_admin.c @@ -45,7 +45,7 @@ class CommandOSAdmin : public Command return MOD_CONT; } - if (na->status & NS_VERBOTEN) + if (na->status & NS_FORBIDDEN) { notice_lang(s_OperServ, u, NICK_X_FORBIDDEN, nick); return MOD_CONT; @@ -129,7 +129,7 @@ class CommandOSAdmin : public Command return MOD_CONT; } - if (na->status & NS_VERBOTEN) + if (na->status & NS_FORBIDDEN) { notice_lang(s_OperServ, u, NICK_X_FORBIDDEN, nick); return MOD_CONT; |