1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 13:22:52 +02:00

Constants

- Don't use octal
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-16 18:20:14 +02:00
parent c1bf76df19
commit dafc39274d

View File

@ -153,11 +153,11 @@ public enum ReplyType : ulong
/**
* rfc 2812
*/
RPL_WELCOME = 001,
RPL_YOURHOST = 002,
RPL_CREATED = 003,
RPL_MYINFO = 004,
RPL_BOUNCE = 005, // TODO: We care about the key-value pairs here in RPL_BOUNCE
RPL_WELCOME = 1,
RPL_YOURHOST = 2,
RPL_CREATED = 3,
RPL_MYINFO = 4,
RPL_BOUNCE = 5, // TODO: We care about the key-value pairs here in RPL_BOUNCE
ERR_NOCHANMODES = 477,