]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_nokicks.cpp
Rename quietban to muteban, change character to +b m:, this way it fits with cmode...
[user/henk/code/inspircd.git] / src / modules / m_nokicks.cpp
index 74701795ba6043cb7a29424beba5c06af5669e3f..de6eab1c7e9221065605955eea9a0cc15f970331 100644 (file)
@@ -23,15 +23,15 @@ class NoKicks : public SimpleChannelModeHandler
 
 class ModuleNoKicks : public Module
 {
-       
+
        NoKicks* nk;
-       
+
  public:
+
        ModuleNoKicks(InspIRCd* Me)
                : Module(Me)
        {
-               
+
                nk = new NoKicks(ServerInstance);
                if (!ServerInstance->Modes->AddMode(nk))
                        throw ModuleException("Could not add new modes!");
@@ -54,7 +54,7 @@ class ModuleNoKicks : public Module
                                else
                                {
                                        // nobody else can (not even opers with override, and founders)
-                                       source->WriteNumeric(484, "%s %s :Can't kick user %s from channel (+Q set)",source->nick.c_str(), channel->name.c_str(), dest->nick.c_str());
+                                       source->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :Can't kick user %s from channel (+Q set)",source->nick.c_str(), channel->name.c_str(), dest->nick.c_str());
                                        return ACR_DENY;
                                }
                        }
@@ -67,7 +67,7 @@ class ModuleNoKicks : public Module
                ServerInstance->Modes->DelMode(nk);
                delete nk;
        }
-       
+
        virtual Version GetVersion()
        {
                return Version(1,2,0,0,VF_COMMON|VF_VENDOR,API_VERSION);