From ee3cacc244731b3103dfe8be77c39d697aafe53e Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Sat, 18 Mar 2023 11:31:55 +0200 Subject: [PATCH] Unit test - Added notes about the fact we should be automating the `NICK` and `USER` commands on connect --- source/birchwood/client/client.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index 7cb2f73..f8ecc45 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -1011,6 +1011,8 @@ public class Client : Thread client.connect(); + // TODO: The below should all be automatic, maybe once IRCV3 is done + // ... we should automate sending in NICK and USER stuff Thread.sleep(dur!("seconds")(2)); client.command(new Message("", "NICK", "birchwood")); // TODO: add nickcommand