diff options
Diffstat (limited to 'src/core/os_oper.c')
-rw-r--r-- | src/core/os_oper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/os_oper.c b/src/core/os_oper.c index be02265e4..92b6b21cb 100644 --- a/src/core/os_oper.c +++ b/src/core/os_oper.c @@ -46,7 +46,7 @@ class CommandOSOper : 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; @@ -130,7 +130,7 @@ class CommandOSOper : 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; |