From dafc39274d8da131353a60f0813a1e9b77612f3e Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Thu, 16 Mar 2023 18:20:14 +0200 Subject: [PATCH] Constants - Don't use octal --- source/birchwood/protocol/constants.d | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/birchwood/protocol/constants.d b/source/birchwood/protocol/constants.d index b01a5e4..b1d6d3e 100644 --- a/source/birchwood/protocol/constants.d +++ b/source/birchwood/protocol/constants.d @@ -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,