diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_uninvite.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/m_uninvite.cpp b/src/modules/m_uninvite.cpp index 1761f354c..7b9d7416b 100644 --- a/src/modules/m_uninvite.cpp +++ b/src/modules/m_uninvite.cpp @@ -46,12 +46,11 @@ class CommandUninvite : public Command return CMD_FAILURE; } - if (c->modes[CM_INVITEONLY]) + if (IS_LOCAL(user)) { if (c->GetStatus(user) < STATUS_HOP) { - user->WriteNumeric(482, "%s %s :You must be at least a%soperator to change modes on this channel",user->nick.c_str(), c->name.c_str(), - ServerInstance->Config->AllowHalfop ? " half-" : " channel "); + user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :You must be a channel %soperator", user->nick.c_str(), c->name.c_str(), c->GetStatus(u) == STATUS_HOP ? "" : "half-"); return CMD_FAILURE; } } |