Reformatting moved color to the top ;(

This commit is contained in:
Matsv 2016-03-31 20:53:03 +02:00
parent cb8ec2ce20
commit 2905d77206

View File

@ -26,14 +26,6 @@ public class ViaCommandHandler implements ViaVersionCommand, CommandExecutor, Ta
} }
} }
public static String color(String string) {
try {
string = ChatColor.translateAlternateColorCodes('&', string); //Dont replace all & with $ like we did before.
} catch (Exception ignored) {
}
return string;
}
@Override @Override
public void registerSubCommand(@NonNull ViaSubCommand command) throws Exception { public void registerSubCommand(@NonNull ViaSubCommand command) throws Exception {
Validate.isTrue(command.name().matches("^[a-z0-9_-]{3,15}$"), command.name() + " is not a valid subcommand name"); Validate.isTrue(command.name().matches("^[a-z0-9_-]{3,15}$"), command.name() + " is not a valid subcommand name");
@ -144,4 +136,12 @@ public class ViaCommandHandler implements ViaVersionCommand, CommandExecutor, Ta
registerSubCommand(new AutoTeamSubCmd()); registerSubCommand(new AutoTeamSubCmd());
registerSubCommand(new HelpSubCmd()); registerSubCommand(new HelpSubCmd());
} }
public static String color(String string) {
try {
string = ChatColor.translateAlternateColorCodes('&', string); //Dont replace all & with $ like we did before.
} catch (Exception ignored) {
}
return string;
}
} }