Change color for cmd_find

Blue is basically unreadable (even worse with some resource packs)
This commit is contained in:
Tom 2016-06-12 12:29:34 +02:00 committed by md_5
parent e4cf010bda
commit 97eef62684

View File

@ -28,7 +28,7 @@ public class CommandFind extends PlayerCommand
sender.sendMessage( ChatColor.RED + "That user is not online" ); sender.sendMessage( ChatColor.RED + "That user is not online" );
} else } else
{ {
sender.sendMessage( ChatColor.BLUE + args[0] + " is online at " + player.getServer().getInfo().getName() ); sender.sendMessage( ChatColor.GREEN + args[0] + " is online at " + player.getServer().getInfo().getName() );
} }
} }
} }