summaryrefslogtreecommitdiff
path: root/src/modules/m_globalload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_globalload.cpp')
-rw-r--r--src/modules/m_globalload.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp
index 8e68d48a6..ef3c1cb5d 100644
--- a/src/modules/m_globalload.cpp
+++ b/src/modules/m_globalload.cpp
@@ -79,9 +79,9 @@ class ModuleGlobalLoad : public Module
cmd_gunloadmodule *mycommand2;
Server *Srv;
public:
- ModuleGlobalLoad(Server* Me) : Module::Module(Me)
+ ModuleGlobalLoad(InspIRCd* Me) : Module::Module(Me)
{
- Srv = Me;
+
mycommand = new cmd_gloadmodule();
mycommand2 = new cmd_gunloadmodule();
Srv->AddCommand(mycommand);
@@ -110,7 +110,7 @@ class ModuleGlobalLoadFactory : public ModuleFactory
{
}
- virtual Module * CreateModule(Server* Me)
+ virtual Module * CreateModule(InspIRCd* Me)
{
return new ModuleGlobalLoad(Me);
}