I'm only committing to test it btw
This commit is contained in:
parent
e51c2fe32f
commit
74fe66ec7d
2 changed files with 2 additions and 1 deletions
|
@ -103,6 +103,7 @@ public class DiscordPlugin extends JavaPlugin implements IListener<ReadyEvent> {
|
||||||
botroomchannel = botchannel;// bot-room
|
botroomchannel = botchannel;// bot-room
|
||||||
issuechannel = botchannel; // bot-room
|
issuechannel = botchannel; // bot-room
|
||||||
chatchannel = devServer.getChannelByID("248185455508455424"); // minecraft_chat_test
|
chatchannel = devServer.getChannelByID("248185455508455424"); // minecraft_chat_test
|
||||||
|
officechannel = devServer.getChannelByID("219626707458457603"); // developers-office
|
||||||
dc.changeStatus(Status.game("testing"));
|
dc.changeStatus(Status.game("testing"));
|
||||||
}
|
}
|
||||||
Bukkit.getScheduler().runTaskAsynchronously(this,
|
Bukkit.getScheduler().runTaskAsynchronously(this,
|
||||||
|
|
|
@ -7,7 +7,7 @@ import sx.blah.discord.handle.impl.events.MessageReceivedEvent;
|
||||||
public class AutoUpdaterListener implements IListener<MessageReceivedEvent> {
|
public class AutoUpdaterListener implements IListener<MessageReceivedEvent> {
|
||||||
@Override
|
@Override
|
||||||
public void handle(MessageReceivedEvent event) {
|
public void handle(MessageReceivedEvent event) {
|
||||||
if (!event.getMessage().getChannel().getID().equals(DiscordPlugin.officechannel))
|
if (!event.getMessage().getChannel().getID().equals(DiscordPlugin.officechannel.getID()))
|
||||||
return;
|
return;
|
||||||
if (event.getMessage().getWebhookID() == null)
|
if (event.getMessage().getWebhookID() == null)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue