summaryrefslogtreecommitdiff
path: root/src/modules/m_testcommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_testcommand.cpp')
-rw-r--r--src/modules/m_testcommand.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_testcommand.cpp b/src/modules/m_testcommand.cpp
index 8daabe889..ffa79f2cd 100644
--- a/src/modules/m_testcommand.cpp
+++ b/src/modules/m_testcommand.cpp
@@ -81,10 +81,10 @@ class ModuleTestCommand : public Module
{
cmd_woot* newcommand;
public:
- ModuleTestCommand(Server* Me)
+ ModuleTestCommand(InspIRCd* Me)
: Module::Module(Me)
{
- Srv = Me;
+
// Create a new command:
// command will be called /WOOT, and will
// call handle_woot when triggered, the
@@ -126,7 +126,7 @@ class ModuleTestCommandFactory : public ModuleFactory
{
}
- virtual Module * CreateModule(Server* Me)
+ virtual Module * CreateModule(InspIRCd* Me)
{
return new ModuleTestCommand(Me);
}