summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 6f1236f60..7640f0edc 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -50,6 +50,7 @@ using namespace std;
#include "typedefs.h"
#include "modules.h"
#include "command_parse.h"
+#include "timer.h"
extern ServerConfig *Config;
extern InspIRCd* ServerInstance;
@@ -414,6 +415,11 @@ chanrec* Server::GetChannelIndex(long index)
return NULL;
}
+void Server::AddTimer(InspTimer* T)
+{
+ AddTimer(T);
+}
+
void Server::SendOpers(std::string s)
{
WriteOpers("%s",s.c_str());