]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_nonotice.cpp
Rename quietban to muteban, change character to +b m:, this way it fits with cmode...
[user/henk/code/inspircd.git] / src / modules / m_nonotice.cpp
index 1e88a4cc0ec98b6ad320a1c09bb7f620a3bca763..8424be8974c2bfd74f52e6e1211ac0865b700b91 100644 (file)
@@ -23,14 +23,14 @@ class NoNotice : public SimpleChannelModeHandler
 
 class ModuleNoNotice : public Module
 {
-       
+
        NoNotice* nt;
  public:
+
        ModuleNoNotice(InspIRCd* Me)
                : Module(Me)
        {
-               
+
                nt = new NoNotice(ServerInstance);
                if (!ServerInstance->Modes->AddMode(nt))
                        throw ModuleException("Could not add new modes!");
@@ -38,7 +38,7 @@ class ModuleNoNotice : public Module
                ServerInstance->Modules->Attach(eventlist, this, 1);
        }
 
-       
+
        virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
        {
                if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user)))
@@ -58,7 +58,7 @@ class ModuleNoNotice : public Module
                                }
                                else
                                {
-                                       user->WriteNumeric(404, "%s %s :Can't send NOTICE to channel (+T set)",user->nick, c->name);
+                                       user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s %s :Can't send NOTICE to channel (+T set)",user->nick.c_str(), c->name.c_str());
                                        return 1;
                                }
                        }
@@ -71,7 +71,7 @@ class ModuleNoNotice : public Module
                ServerInstance->Modes->DelMode(nt);
                delete nt;
        }
-       
+
        virtual Version GetVersion()
        {
                return Version(1,2,0,0,VF_COMMON|VF_VENDOR,API_VERSION);