X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_nonotice.cpp;h=ae00a126acbb12be2bdd1039fc65e9489020317d;hb=d185decae97752368d5cf62311cbc0d1a52aa22c;hp=bb5e6222922667535a1d2b46c60e546c7895bb0d;hpb=62ac378bfb9591f5c5e10076c8be73adaabcfc64;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_nonotice.cpp b/src/modules/m_nonotice.cpp index bb5e62229..ae00a126a 100644 --- a/src/modules/m_nonotice.cpp +++ b/src/modules/m_nonotice.cpp @@ -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))) @@ -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);