From 681dfc042cb2794bb8c0e088f019555c38f4dcdd Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 15 Mar 2023 20:07:10 +0200 Subject: [PATCH] Client - Added TODO where response code handling needs to go --- source/birchwood/client/client.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index 3050b7c..248145f 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -524,6 +524,9 @@ public class Client : Thread // If the command is numeric then it is a reply of some sorts else if(ircMessage.isResponseMessage()) { + // TODO: Add numeric response check here for CERTAIN ones which add to client + // ... state + /* Call the command reply handler */ onCommandReply(ircMessage); }