Skip to content

Commit

Permalink
Fixed colors codes not working in status placeholder in listqueues co…
Browse files Browse the repository at this point in the history
…mmand
  • Loading branch information
ajgeiss0702 committed Aug 15, 2022
1 parent 478f2cf commit 76796b0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -71,7 +71,7 @@ public void execute(ICommandSender sender, String[] args) {
"COLOR:" + Messages.color(color),
"NAME:" + s.getAlias(),
"COUNT:" + s.getQueue().size(),
"STATUS:" + main.getMessages().getRawString("placeholders.status."+s.getStatus(spp))
"STATUS:" + Messages.color(main.getMessages().getRawString("placeholders.status."+s.getStatus(spp)))
));
}
sender.sendMessage(m);
Expand Down

0 comments on commit 76796b0

Please sign in to comment.