From 28c82e83802100a2b7b6dadf5333a199c9fbe663 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 27 Mar 2005 20:20:15 +0000 Subject: Added 005 numeric handling to most of the modules git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@921 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_remove.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/modules/m_remove.cpp') diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 94ca1e5d2..873bdb25e 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -115,6 +115,11 @@ class ModuleRemove : public Module Srv = new Server; Srv->AddCommand("REMOVE", handle_remove, 0, 3); } + + virtual void On005Numeric(std::string &output) + { + output = output + std::string(" REMOVE"); + } virtual ~ModuleRemove() { -- cgit v1.2.3