Skip to content

Commit

Permalink
fixed a mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
njezi committed Aug 5, 2024
1 parent eca2563 commit e8d0fa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/jagrosh/jmusicbot/utils/FormatUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static String listOfVChannels(List<VoiceChannel> list, String query)

public static String listOfRoles(List<Role> list, String query)
{
String out = " Multiple text channels found matching \""+query+"\":";
String out = " Multiple roles found matching \""+query+"\":";
for(int i=0; i<6 && i<list.size(); i++)
out+="\n - "+list.get(i).getName()+" (ID:"+list.get(i).getId()+")";
if(list.size()>6)
Expand Down

0 comments on commit e8d0fa6

Please sign in to comment.