diff --git a/common/src/main/java/com/mineaurion/aurionchat/common/command/ChatCommandCommon.java b/common/src/main/java/com/mineaurion/aurionchat/common/command/ChatCommandCommon.java index 84728aa..bd0e6df 100644 --- a/common/src/main/java/com/mineaurion/aurionchat/common/command/ChatCommandCommon.java +++ b/common/src/main/java/com/mineaurion/aurionchat/common/command/ChatCommandCommon.java @@ -35,7 +35,6 @@ public AbstractAurionChat getPlugin(){ } private void join(AurionChatPlayer aurionChatPlayer, String channel) throws ChannelNotFoundException { - this.checkChannelExist(channel); aurionChatPlayer.setCurrentChannel(channel); aurionChatPlayer.sendMessage(text("You have joined the " + channel + " channel.").color(GOLD)); }