X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_nonicks.cpp;h=90fd93f1ce9451f7281c71377dd4d79a2f475cf1;hb=124bc04e841f9ca527b99c37563f19a85dec63fc;hp=d8f974c9f649b12d336cd72d5bdfcfa64dc45d79;hpb=cfb2c2fff47d99f43434de7db339c2f2237c6bad;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_nonicks.cpp b/src/modules/m_nonicks.cpp index d8f974c9f..90fd93f1c 100644 --- a/src/modules/m_nonicks.cpp +++ b/src/modules/m_nonicks.cpp @@ -16,20 +16,15 @@ using namespace std; -#include -#include #include "users.h" #include "channels.h" #include "modules.h" -#include "helperfuncs.h" #include "hashcomp.h" #include "configreader.h" #include "inspircd.h" /* $ModDesc: Provides support for unreal-style GLOBOPS and umode +g */ - - class NoNicks : public ModeHandler { public: @@ -60,9 +55,7 @@ class NoNicks : public ModeHandler class ModuleNoNickChange : public Module { - NoNicks* nn; - public: ModuleNoNickChange(InspIRCd* Me) : Module::Module(Me) @@ -74,24 +67,20 @@ class ModuleNoNickChange : public Module virtual ~ModuleNoNickChange() { + ServerInstance->Modes->DelMode(nn); DELETE(nn); } virtual Version GetVersion() { - return Version(1,0,0,1,VF_STATIC|VF_VENDOR); + return Version(1,1,0,1,VF_COMMON|VF_VENDOR,API_VERSION); } void Implements(char* List) { - List[I_On005Numeric] = List[I_OnUserPreNick] = 1; + List[I_OnUserPreNick] = 1; } - virtual void On005Numeric(std::string &output) - { - ServerInstance->Modes->InsertMode(output,"N",4); - } - virtual int OnUserPreNick(userrec* user, const std::string &newnick) { irc::string server = user->server;