]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operchans.cpp
Rename quietban to muteban, change character to +b m:, this way it fits with cmode...
[user/henk/code/inspircd.git] / src / modules / m_operchans.cpp
index 4600760f2c35cf62e8d1d144208bece8ea874836..3b28eeb38deaccca3d050ddbdc0e9f544497a227 100644 (file)
@@ -46,13 +46,13 @@ class OperChans : public ModeHandler
 
 class ModuleOperChans : public Module
 {
-       
+
        OperChans* oc;
  public:
        ModuleOperChans(InspIRCd* Me)
                : Module(Me)
        {
-                               
+
                oc = new OperChans(ServerInstance);
                if (!ServerInstance->Modes->AddMode(oc))
                        throw ModuleException("Could not add new modes!");
@@ -69,20 +69,20 @@ class ModuleOperChans : public Module
                        {
                                if (chan->IsModeSet('O'))
                                {
-                                       user->WriteNumeric(520, "%s %s :Only IRC operators may join the channel %s (+O is set)",user->nick.c_str(), chan->name.c_str(), chan->name.c_str());
+                                       user->WriteNumeric(ERR_CANTJOINOPERSONLY, "%s %s :Only IRC operators may join the channel %s (+O is set)",user->nick.c_str(), chan->name.c_str(), chan->name.c_str());
                                        return 1;
                                }
                        }
                }
                return 0;
        }
-       
+
        virtual ~ModuleOperChans()
        {
                ServerInstance->Modes->DelMode(oc);
                delete oc;
        }
-       
+
        virtual Version GetVersion()
        {
                return Version(1,2,0,0,VF_VENDOR|VF_COMMON,API_VERSION);