diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-13 20:32:11 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-13 20:32:11 +0000 |
commit | 40dc59986b3991d3db3cb3a761aa9aa7bab69737 (patch) | |
tree | 4916e46d366382636269a5dfd05fb161b472ee66 /src/modules/m_swhois.cpp | |
parent | 0ed3ef9dee2cb8f4b0c37da218a2fd1eee8c31f6 (diff) |
Forgotten Extensible::Register invocations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11705 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_swhois.cpp')
-rw-r--r-- | src/modules/m_swhois.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_swhois.cpp b/src/modules/m_swhois.cpp index bd2447c2a..918d00e14 100644 --- a/src/modules/m_swhois.cpp +++ b/src/modules/m_swhois.cpp @@ -24,6 +24,7 @@ class CommandSwhois : public Command CommandSwhois (InspIRCd* Instance, Module* Creator) : Command(Instance, Creator,"SWHOIS","o",2,2), swhois("swhois", Creator) { syntax = "<nick> :<swhois>"; + Extensible::Register(&swhois); TRANSLATE3(TR_NICK, TR_TEXT, TR_END); } |