diff options
author | Robin Burchell <viroteck@viroteck.net> | 2012-05-30 02:54:45 -0700 |
---|---|---|
committer | Robin Burchell <viroteck@viroteck.net> | 2012-05-30 02:54:45 -0700 |
commit | a66b5a7b8f10a876970230cd087352d3bda5ef3e (patch) | |
tree | 4d459a14522ec518d9802d01c23f7d7a4fd338ec /src/modules/m_clones.cpp | |
parent | cb9740f15157b2c32d4bd8ca9d43ae06f98aa963 (diff) | |
parent | 804c02174fd61143f6da5580dd0e28bd9f1bb8a8 (diff) |
Merge pull request #173 from Robby-/insp20-moddesc
[2.0] Module description updates
Diffstat (limited to 'src/modules/m_clones.cpp')
-rw-r--r-- | src/modules/m_clones.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_clones.cpp b/src/modules/m_clones.cpp index 1e5841609..aceac0dc7 100644 --- a/src/modules/m_clones.cpp +++ b/src/modules/m_clones.cpp @@ -21,9 +21,9 @@ #include "inspircd.h" -/* $ModDesc: Provides the /clones command to retrieve information on clones. */ +/* $ModDesc: Provides the /CLONES command to retrieve information on clones. */ -/** Handle /CHECK +/** Handle /CLONES */ class CommandClones : public Command { @@ -44,7 +44,7 @@ class CommandClones : public Command * Syntax of a /clones reply: * :server.name 304 target :CLONES START * :server.name 304 target :CLONES <count> <ip> - * :server.name 304 target :CHECK END + * :server.name 304 target :CLONES END */ user->WriteServ(clonesstr + " START"); @@ -80,7 +80,7 @@ class ModuleClones : public Module virtual Version GetVersion() { - return Version("Provides the /clones command to retrieve information on clones.", VF_VENDOR); + return Version("Provides the /CLONES command to retrieve information on clones.", VF_VENDOR); } |