Don't respond to messages unless they're in a text channel with "music"
in the name.
This commit is contained in:
parent
42a9f0047b
commit
579fb01a20
|
@ -93,6 +93,10 @@ public class Main extends ListenerAdapter
|
||||||
String content = message.getContentRaw();
|
String content = message.getContentRaw();
|
||||||
Guild guild = event.getGuild();
|
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
|
// Ignore message if bot
|
||||||
if (author.isBot())
|
if (author.isBot())
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue