From c357ccf7483cd6d9e339fdf7a6a730e67a152e38 Mon Sep 17 00:00:00 2001 From: M0diis Date: Thu, 29 Feb 2024 22:44:12 +0200 Subject: [PATCH] Fix SwitchChannelCommand --- .../java/at/helpch/chatchat/command/SwitchChannelCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/java/at/helpch/chatchat/command/SwitchChannelCommand.java b/plugin/src/main/java/at/helpch/chatchat/command/SwitchChannelCommand.java index 4784f6dc..9d0b038c 100644 --- a/plugin/src/main/java/at/helpch/chatchat/command/SwitchChannelCommand.java +++ b/plugin/src/main/java/at/helpch/chatchat/command/SwitchChannelCommand.java @@ -57,6 +57,6 @@ public void switchChannel(final ChatUser user, @Join @Optional @NotNull final St return; } - MessageProcessor.process(plugin, user, channel, user.channel(), message, false); + MessageProcessor.process(plugin, user, channel, message, false); } }