Fixed actionbar messages' color being restricted by player's perm #2

Merged
Minenash merged 1 commits from action_bar into master 2019-01-08 09:55:12 -05:00
Showing only changes of commit 4662a55f11 - Show all commits
+1 -1
View File
@@ -104,7 +104,7 @@ public class ChatAPI
{ {
if (sender instanceof Player) 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)));
} }
} }