Change the numerics used by /COMMANDS to avoid a collision.

This commit is contained in:
Peter Powell 2017-09-05 19:10:03 +01:00
parent f1bfa8242c
commit d68c5be901
2 changed files with 7 additions and 3 deletions

View File

@ -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,

View File

@ -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)
{