summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/numerics.h3
-rw-r--r--src/coremods/core_info/cmd_commands.cpp7
2 files changed, 7 insertions, 3 deletions
diff --git a/include/numerics.h b/include/numerics.h
index e1d225d31..03c1a1c96 100644
--- a/include/numerics.h
+++ b/include/numerics.h
@@ -189,9 +189,6 @@ enum
ERR_CANTJOINOPERSONLY = 520, // unrealircd, but crap to have so many numerics for cant join..
ERR_CANTSENDTOUSER = 531, // ???
- RPL_COMMANDS = 702, // insp-specific
- RPL_COMMANDSEND = 703, // insp-specific
-
ERR_CHANOPEN = 713,
ERR_KNOCKONCHAN = 714,
diff --git a/src/coremods/core_info/cmd_commands.cpp b/src/coremods/core_info/cmd_commands.cpp
index b6cc8e34d..a7a622f5f 100644
--- a/src/coremods/core_info/cmd_commands.cpp
+++ b/src/coremods/core_info/cmd_commands.cpp
@@ -21,6 +21,13 @@
#include "inspircd.h"
#include "core_info.h"
+enum
+{
+ // InspIRCd-specific.
+ RPL_COMMANDS = 700,
+ RPL_COMMANDSEND = 701
+};
+
CommandCommands::CommandCommands(Module* parent)
: Command(parent, "COMMANDS", 0, 0)
{