diff options
Diffstat (limited to 'src/modules/m_testcommand.cpp')
-rw-r--r-- | src/modules/m_testcommand.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/m_testcommand.cpp b/src/modules/m_testcommand.cpp index fe205ccc5..72ca9e16a 100644 --- a/src/modules/m_testcommand.cpp +++ b/src/modules/m_testcommand.cpp @@ -12,8 +12,10 @@ Server *Srv; void handle_woot(char **parameters, int pcnt, userrec *user) { // this test command just accepts: - // /woot <text> + // /woot :<text> // and sends <text> to all opers with +s mode. + // NB: The ':' is *REQUIRED* otherwise the parser will + // split the line into multiple parameters[]! Srv->SendOpers(parameters[0]); } |