diff options
author | Robby- <robbyke@gmail.com> | 2012-04-19 11:46:51 +0200 |
---|---|---|
committer | Robby- <robbyke@gmail.com> | 2012-04-19 11:46:51 +0200 |
commit | 485e97fb1c68152003e2760668294dd94d3c3807 (patch) | |
tree | 7e8d0f4769b64d41ffdb39360d58a042e477b2e5 /src | |
parent | b32df2db7d60e180e3ac9b219165723c59ce1fca (diff) |
Revert 05e6330fbd6e9a427c09cf90e2cada10656c48f7 and reference HELPOP instead (afterall, the module is called helpop and references itself as that in the code/output too, and most clients override /help), also make the alias work the other way around
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_helpop.cpp | 4 |
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); } }; |