diff options
| author | 2005-12-26 21:14:49 +0000 | |
|---|---|---|
| committer | 2005-12-26 21:14:49 +0000 | |
| commit | b9e643261230d3b71517b0bc631c3b306e7246fa (patch) | |
| tree | ef6912b4891f933b5a061a3a88633b394d0ab774 /src/modules/m_remove.cpp | |
| parent | Ported to new system (diff) | |
| download | inspircd++-b9e643261230d3b71517b0bc631c3b306e7246fa.tar.gz inspircd++-b9e643261230d3b71517b0bc631c3b306e7246fa.tar.bz2 inspircd++-b9e643261230d3b71517b0bc631c3b306e7246fa.zip | |
Converted to 'Implements' system
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2666 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_remove.cpp')
| -rw-r--r-- | src/modules/m_remove.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 7962d6a1d..5a83670e9 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -130,6 +130,11 @@ class ModuleRemove : public Module Srv->AddCommand(mycommand); } + void Implements(char* List) + { + List[I_On005Numeric] = 1; + } + virtual void On005Numeric(std::string &output) { output = output + std::string(" REMOVE"); |
