diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 21:59:07 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 21:59:07 +0000 |
commit | 0532c5ff4259b4b742e9f5c113236aec445dde0b (patch) | |
tree | ee77e0760bfd5ae66d12b444fdf5456f2e9f483f /src/modules/m_testcommand.cpp | |
parent | 53ebf157c53f6808cb042c5a6cc6edd06d394c98 (diff) |
Tidied up m_testcommand (removed a mode handler)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4197 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_testcommand.cpp')
-rw-r--r-- | src/modules/m_testcommand.cpp | 38 |
1 files changed, 1 insertions, 37 deletions
diff --git a/src/modules/m_testcommand.cpp b/src/modules/m_testcommand.cpp index ceb0651d8..473f2941d 100644 --- a/src/modules/m_testcommand.cpp +++ b/src/modules/m_testcommand.cpp @@ -69,51 +69,15 @@ class ModuleTestCommand : public Module // command takes only one parameter. newcommand = new cmd_woot(); Srv->AddCommand(newcommand); - - // Add a mode +Z for channels with no parameters - Srv->AddExtendedMode('Z',MT_CHANNEL,false,1,0); } void Implements(char* List) { - List[I_OnExtendedMode] = List[I_OnUserJoin] = 1; + List[I_OnUserJoin] = 1; } - - virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list ¶ms) - { - - if ((modechar != 'Z') || (type != MT_CHANNEL)) - { - // this mode isn't ours, we have to bail and return 0 to not handle it. - Srv->Log(DEBUG,"Extended mode event triggered, but this is not a mode i've claimed!"); - return 0; - } - - chanrec* chan = (chanrec*)target; - - if (mode_on) - { - Srv->Log(DEBUG,"Custom mode is being added to channel"); - Srv->Log(DEBUG,chan->name); - } - else - { - Srv->Log(DEBUG,"Custom mode is being taken from a channel"); - Srv->Log(DEBUG,chan->name); - } - // must return 1 to handle the mode! - return 1; - } - virtual void OnUserJoin(userrec* user, chanrec* channel) { - Srv->Log(DEBUG,"OnUserJoin triggered"); - if (channel->IsModeSet('Z')) - { - std::string param = channel->GetModeParameter('Z'); - Srv->Log(DEBUG,"Custom mode is set on this channel! Parameter="+param); - } } virtual ~ModuleTestCommand() |