diff --git a/src/main/java/com/jagrosh/jmusicbot/JMusicBot.java b/src/main/java/com/jagrosh/jmusicbot/JMusicBot.java index 67cff1475..d66c35190 100644 --- a/src/main/java/com/jagrosh/jmusicbot/JMusicBot.java +++ b/src/main/java/com/jagrosh/jmusicbot/JMusicBot.java @@ -137,7 +137,7 @@ private static void startBot() // message content intent if(!"@mention".equals(config.getPrefix())) { - prompt.alert(Prompt.Level.INFO, "JMusicBot", "You currently have a custom prefix set. " + LOG.info("JMusicBot", "You currently have a custom prefix set. " + "If your prefix is not working, make sure that the 'MESSAGE CONTENT INTENT' is Enabled " + "on https://discord.com/developers/applications/" + jda.getSelfUser().getId() + "/bot"); } diff --git a/src/main/java/com/jagrosh/jmusicbot/utils/OtherUtil.java b/src/main/java/com/jagrosh/jmusicbot/utils/OtherUtil.java index 9b6294933..a22175d02 100644 --- a/src/main/java/com/jagrosh/jmusicbot/utils/OtherUtil.java +++ b/src/main/java/com/jagrosh/jmusicbot/utils/OtherUtil.java @@ -223,7 +223,8 @@ public static String getUnsupportedBotReason(JDA jda) ApplicationInfo info = jda.retrieveApplicationInfo().complete(); if (info.isBotPublic()) - return "\"Public Bot\" is enabled. Using JMusicBot as a public bot is not supported. Please disable it in the Developer Dashboard."; + return "\"Public Bot\" is enabled. Using JMusicBot as a public bot is not supported. Please disable it in the " + + "Developer Dashboard at https://discord.com/developers/applications/" + jda.getSelfUser().getId() + "/bot."; return null; }