diff options
| author | 2018-04-07 15:07:24 +0100 | |
|---|---|---|
| committer | 2018-04-08 16:54:27 +0100 | |
| commit | 454c8d374955d2ffb3ec1fca39a6efc32032c649 (patch) | |
| tree | eba7066c77408fb909c74154bcf52df34c0911a9 /src/modules/m_svshold.cpp | |
| parent | Fix some more oversights in m_geoip. (diff) | |
| download | inspircd++-454c8d374955d2ffb3ec1fca39a6efc32032c649.tar.gz inspircd++-454c8d374955d2ffb3ec1fca39a6efc32032c649.tar.bz2 inspircd++-454c8d374955d2ffb3ec1fca39a6efc32032c649.zip | |
Move OnStats from the core to a cross-module event.
Some core code still exists in the XLine system but this will be
replaced when the XLine system is replaced later.
Diffstat (limited to 'src/modules/m_svshold.cpp')
| -rw-r--r-- | src/modules/m_svshold.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modules/m_svshold.cpp b/src/modules/m_svshold.cpp index 1ba16f3f4..481a1aaba 100644 --- a/src/modules/m_svshold.cpp +++ b/src/modules/m_svshold.cpp @@ -22,6 +22,7 @@ #include "inspircd.h" #include "xline.h" +#include "modules/stats.h" namespace { @@ -161,14 +162,16 @@ class CommandSvshold : public Command } }; -class ModuleSVSHold : public Module +class ModuleSVSHold : public Module, public Stats::EventListener { CommandSvshold cmd; SVSHoldFactory s; public: - ModuleSVSHold() : cmd(this) + ModuleSVSHold() + : Stats::EventListener(this) + , cmd(this) { } |
