Don't respond to messages unless they're in a text channel with "music"

in the name.
crossfading
AwesomeToaster 3 years ago
parent 42a9f0047b
commit 579fb01a20
  1. 4
      src/main/java/moe/nekojimi/chords/Main.java

@ -93,6 +93,10 @@ public class Main extends ListenerAdapter
String content = message.getContentRaw();
Guild guild = event.getGuild();
// Ignore message if it's not in a music channel
if (!event.getChannel().getName().contains("music"))
return;
// Ignore message if bot
if (author.isBot())
return;

Loading…
Cancel
Save