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

Constants

- Don't use octals
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-16 18:19:01 +02:00
parent f120a566a7
commit c0a249a31c

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,