From 24f548820a069ba39c69e3172b11d7e4e65289f7 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 28 Jun 2023 23:09:21 +0200 Subject: [PATCH] Client - Removed option no longer being considered --- source/birchwood/client/client.d | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index f8c0d82..5f2442a 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -943,10 +943,8 @@ public class Client : Thread /** * Disconnect from the IRC server gracefully */ - public void quit(bool gracefulChannelLeave = false) + public void quit() { - // TODO: Add graceful leaving of all channels? - /* Generate the quit command using the custom quit message */ Message quitCommand = new Message("", "QUIT", connInfo.quitMessage); sendMessage(quitCommand);