From c0a249a31c14af3762d317ddde2a0242c3e42d90 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Thu, 16 Mar 2023 18:19:01 +0200 Subject: [PATCH] Constants - Don't use octals --- 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,