Skip to content

Commit

Permalink
Throw unsupported reason dialog as INFO instead of ERROR
Browse files Browse the repository at this point in the history
  • Loading branch information
sks316 authored Mar 11, 2024
1 parent 1e7034b commit 5db8414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/jagrosh/jmusicbot/JMusicBot.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private static void startBot()
String unsupportedReason = OtherUtil.getUnsupportedBotReason(jda);
if (unsupportedReason != null)
{
prompt.alert(Prompt.Level.ERROR, "JMusicBot", "Unsupported behavior detected: " + unsupportedReason);
prompt.alert(Prompt.Level.INFO, "JMusicBot", "Unsupported behavior detected: " + unsupportedReason);
}

// other check that will just be a warning now but may be required in the future
Expand Down

0 comments on commit 5db8414

Please sign in to comment.