diff options
author | Peter Powell <petpow@saberuk.com> | 2017-09-05 19:10:03 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2017-09-06 09:26:05 +0100 |
commit | d68c5be901d1d3f3a68e9796f9cd0815a4568a72 (patch) | |
tree | 032587a4223af07714f1937e96bac587400c225b /src/coremods | |
parent | f1bfa8242c0a5b76bcff36c70103c2aae7cbdf5f (diff) |
Change the numerics used by /COMMANDS to avoid a collision.
Diffstat (limited to 'src/coremods')
-rw-r--r-- | src/coremods/core_info/cmd_commands.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
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) { |