From f97d7e7a0502d14759d8114d5523bac0b4426d52 Mon Sep 17 00:00:00 2001 From: NorbiPeti Date: Sat, 31 Dec 2016 18:35:54 +0100 Subject: [PATCH] Fixed office channel test location Also testing it with this commit --- src/main/java/buttondevteam/discordplugin/DiscordPlugin.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/buttondevteam/discordplugin/DiscordPlugin.java b/src/main/java/buttondevteam/discordplugin/DiscordPlugin.java index 8ea247c..bb26d6c 100644 --- a/src/main/java/buttondevteam/discordplugin/DiscordPlugin.java +++ b/src/main/java/buttondevteam/discordplugin/DiscordPlugin.java @@ -64,6 +64,9 @@ public class DiscordPlugin extends JavaPlugin implements IListener { public static IChannel chatchannel; public static IChannel issuechannel; public static IChannel botroomchannel; + /** + * Don't send messages, just receive, the same channel is used when testing + */ public static IChannel officechannel; public static IChannel coffeechannel; public static IChannel updatechannel; @@ -97,7 +100,7 @@ public class DiscordPlugin extends JavaPlugin implements IListener { botroomchannel = botchannel;// bot-room issuechannel = botchannel; // bot-room chatchannel = devServer.getChannelByID("248185455508455424"); // minecraft_chat_test - officechannel = botchannel; // bot-room + officechannel = devServer.getChannelByID("219626707458457603"); // developers-office coffeechannel = botchannel; // bot-room updatechannel = botchannel; dc.changeStatus(Status.game("testing"));