Archived
0

Merge pull request #2 from RedstonerServer/action_bar

Fixed actionbar messages' color being restricted by player's perm
This commit is contained in:
Minenash 2019-01-08 09:55:11 -05:00 committed by GitHub
commit 4e8b2f6722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@ public class ChatAPI
{
if (sender instanceof Player)
{
((Player) sender).spigot().sendMessage(ChatMessageType.ACTION_BAR, new TextComponent(colorify(sender, message)));
((Player) sender).spigot().sendMessage(ChatMessageType.ACTION_BAR, new TextComponent(colorify(null, message)));
}
}