X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_globops.cpp;h=4c8b0e713e54945cf6ccf66fc4bde4c88bb76a51;hb=24731c63b6320be22f7b3220236271fa7476b975;hp=934a4ec14f30404893a86731b7e19a0dcb26ace4;hpb=79f9faeec84fbcb704b45811b9851148ab1cb20b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_globops.cpp b/src/modules/m_globops.cpp index 934a4ec14..4c8b0e713 100644 --- a/src/modules/m_globops.cpp +++ b/src/modules/m_globops.cpp @@ -22,9 +22,8 @@ class CommandGlobops : public Command { public: - CommandGlobops (InspIRCd* Instance) : Command(Instance,"GLOBOPS","o",1,1) + CommandGlobops (InspIRCd* Instance, Module* Creator) : Command(Instance, Creator,"GLOBOPS","o",1,1) { - this->source = "m_globops.so"; syntax = ""; TRANSLATE2(TR_TEXT, TR_END); } @@ -48,7 +47,7 @@ class ModuleGlobops : public Module CommandGlobops cmd; public: ModuleGlobops(InspIRCd* Me) - : Module(Me), cmd(Me) + : Module(Me), cmd(Me, this) { ServerInstance->AddCommand(&cmd); ServerInstance->SNO->EnableSnomask('g',"GLOBOPS");