summaryrefslogtreecommitdiff
path: root/modules/commands/ms_cancel.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-05-05 03:30:08 -0400
committerAdam <Adam@anope.org>2013-05-05 03:30:08 -0400
commit57c2b65f08c9c0658003a74a32c6506829e12b0b (patch)
tree49883b790ed9f7cd395e0c6f2f62cc946d743635 /modules/commands/ms_cancel.cpp
parenta118946e657b8a137502ff60c1f21c608cb44495 (diff)
Move module header files to include/modules to fix naming conflicts with system headers
Diffstat (limited to 'modules/commands/ms_cancel.cpp')
-rw-r--r--modules/commands/ms_cancel.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/commands/ms_cancel.cpp b/modules/commands/ms_cancel.cpp
index e0e917b5e..2ab605f40 100644
--- a/modules/commands/ms_cancel.cpp
+++ b/modules/commands/ms_cancel.cpp
@@ -12,9 +12,6 @@
/*************************************************************************/
#include "module.h"
-#include "memoserv.h"
-
-static ServiceReference<MemoServService> MemoServService("MemoServService", "MemoServ");
class CommandMSCancel : public Command
{
@@ -27,10 +24,6 @@ class CommandMSCancel : public Command
void Execute(CommandSource &source, const std::vector<Anope::string> &params) anope_override
{
- if (!MemoServService)
- return;
-
-
const Anope::string &nname = params[0];
bool ischan;
@@ -81,9 +74,6 @@ class MSCancel : public Module
MSCancel(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
commandmscancel(this)
{
-
- if (!MemoServService)
- throw ModuleException("No MemoServ!");
}
};