diff options
Diffstat (limited to 'src/core/cs_drop.c')
-rw-r--r-- | src/core/cs_drop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/cs_drop.c b/src/core/cs_drop.c index b44499f0e..84e72a7a8 100644 --- a/src/core/cs_drop.c +++ b/src/core/cs_drop.c @@ -52,7 +52,7 @@ class CommandCSDrop : public Command return MOD_CONT; } - if (!is_servadmin && (ci->flags & CI_VERBOTEN)) + if (!is_servadmin && (ci->flags & CI_FORBIDDEN)) { notice_lang(s_ChanServ, u, CHAN_X_FORBIDDEN, chan); return MOD_CONT; @@ -81,7 +81,7 @@ class CommandCSDrop : public Command } } - if (ircd->chansqline && (ci->flags & CI_VERBOTEN)) + if (ircd->chansqline && (ci->flags & CI_FORBIDDEN)) { ircdproto->SendSQLineDel(ci->name); } |