1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 14:23:38 +02:00

Constants

- Apparently that syntax does octal number representation, I don't want that
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-16 13:07:29 +02:00
parent 9633e76c1c
commit 9134a437d5

View File

@ -152,11 +152,11 @@ public enum ReplyType : ulong
/** /**
* rfc 2812 * rfc 2812
*/ */
RPL_WELCOME = 001, RPL_WELCOME = 1,
RPL_YOURHOST = 002, RPL_YOURHOST = 2,
RPL_CREATED = 003, RPL_CREATED = 3,
RPL_MYINFO = 004, RPL_MYINFO = 4,
RPL_BOUNCE = 010, // In ircv3 this changed from 005 to 010 RPL_BOUNCE = 10, // In ircv3 this changed from 005 to 010
ERR_NOCHANMODES = 477, ERR_NOCHANMODES = 477,
/** /**
@ -165,7 +165,7 @@ public enum ReplyType : ulong
RPL_LOCALUSERS = 265, RPL_LOCALUSERS = 265,
RPL_GLOBALUSERS = 266, RPL_GLOBALUSERS = 266,
RPL_WHOISCERTFP = 276, RPL_WHOISCERTFP = 276,
RPL_ISUPPORT = 005, // This overrides the old rfc2812 RPL_BOUNCE code (we can only support one of these) RPL_ISUPPORT = 5, // This overrides the old rfc2812 RPL_BOUNCE code (we can only support one of these)