1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 13:43:19 +02:00
- Removed option no longer being considered
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-28 23:09:21 +02:00
parent 725672dfa7
commit 24f548820a

View File

@ -943,10 +943,8 @@ public class Client : Thread
/** /**
* Disconnect from the IRC server gracefully * 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 */ /* Generate the quit command using the custom quit message */
Message quitCommand = new Message("", "QUIT", connInfo.quitMessage); Message quitCommand = new Message("", "QUIT", connInfo.quitMessage);
sendMessage(quitCommand); sendMessage(quitCommand);