X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setname.cpp;h=25269d1c420784f6e901604abcd7fb6e36770153;hb=d54fd9b1e6b31f69332a9241b5f17330c0ad61e0;hp=163f30f73e9434ed6fa4142e33f6bdd990344985;hpb=b37a253d962ed7af1ea7a328abf2a1af74f30759;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index 163f30f73..25269d1c4 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -21,16 +21,17 @@ using namespace std; #include "users.h" #include "channels.h" #include "modules.h" -#include "helperfuncs.h" + +#include "inspircd.h" /* $ModDesc: Provides support for the SETNAME command */ -static Server *Srv; + class cmd_setname : public command_t { public: - cmd_setname () : command_t("SETNAME", 0, 1) + cmd_setname (InspIRCd* Instance) : command_t(Instance,"SETNAME", 0, 1) { this->source = "m_setname.so"; syntax = ""; @@ -57,8 +58,8 @@ class ModuleSetName : public Module : Module::Module(Me) { - mycommand = new cmd_setname(); - Srv->AddCommand(mycommand); + mycommand = new cmd_setname(ServerInstance); + ServerInstance->AddCommand(mycommand); } virtual ~ModuleSetName()