summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobin Burchell <viroteck@viroteck.net>2012-04-19 03:25:05 -0700
committerRobin Burchell <viroteck@viroteck.net>2012-04-19 03:25:05 -0700
commit58c47b3943d45ca630e68ac62f0fba0eddee9ed4 (patch)
treeab48ac5f94556c36b1aa80cc0151b7f26f0c5d63 /src
parentb0611fabe709619b2b9cc5f339b5fe7adc7b9e72 (diff)
parent485e97fb1c68152003e2760668294dd94d3c3807 (diff)
Merge pull request #88 from Robby-/insp20-helpop
[2.0] helpop: revert 05e6330 and make it the other way around
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_helpop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp
index 4c5dc23a9..502fa33fd 100644
--- a/src/modules/m_helpop.cpp
+++ b/src/modules/m_helpop.cpp
@@ -53,7 +53,7 @@ class Helpop : public ModeHandler
class CommandHelpop : public Command
{
public:
- CommandHelpop(Module* Creator) : Command(Creator, "HELP", 0)
+ CommandHelpop(Module* Creator) : Command(Creator, "HELPOP", 0)
{
syntax = "<any-text>";
}
@@ -176,7 +176,7 @@ class ModuleHelpop : public Module
Version GetVersion()
{
- return Version("/help command, works like Unreal helpop", VF_VENDOR);
+ return Version("Provides the /HELPOP command, works like UnrealIRCd's helpop", VF_VENDOR);
}
};