From 6f0a9e32cac301aa52fd75cbf2d0469cc09d5114 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 8 Mar 2023 20:17:40 +0200 Subject: [PATCH] Client - Fixed bug within `channelMessage(string,string[])` which would leave the channel provided instead of sending the message provided to the the channel provided as it called `leaveChannel(channel[0])` instead of `channelMessage(string, string)` --- source/birchwood/client.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/birchwood/client.d b/source/birchwood/client.d index 34664eb..38da76e 100644 --- a/source/birchwood/client.d +++ b/source/birchwood/client.d @@ -494,7 +494,7 @@ public class Client : Thread if(channels.length == 1) { /* Send to a single channel */ - leaveChannel(channels[0]); + channelMessage(message, channels[0]); } /* If multiple channels */ else if(channels.length > 1)