Removed pointless "> "

This commit is contained in:
Anuken
2019-12-28 18:12:34 -05:00
parent 7543d92473
commit 497ae740aa
2 changed files with 1 additions and 3 deletions

View File

@@ -84,6 +84,7 @@ public class BeControl{
if(!updateAvailable) return; if(!updateAvailable) return;
if(!headless){ if(!headless){
checkUpdates = false;
ui.showCustomConfirm(Core.bundle.format("be.update", "") + " " + updateBuild, "$be.update.confirm", "$ok", "$be.ignore", () -> { ui.showCustomConfirm(Core.bundle.format("be.update", "") + " " + updateBuild, "$be.update.confirm", "$ok", "$be.ignore", () -> {
boolean[] cancel = {false}; boolean[] cancel = {false};
float[] progress = {0}; float[] progress = {0};

View File

@@ -170,7 +170,6 @@ public class ServerControl implements ApplicationListener{
toggleSocket(Config.socketInput.bool()); toggleSocket(Config.socketInput.bool());
info("&lcServer loaded. Type &ly'help'&lc for help."); info("&lcServer loaded. Type &ly'help'&lc for help.");
System.out.print("> ");
} }
private void registerCommands(){ private void registerCommands(){
@@ -822,8 +821,6 @@ public class ServerControl implements ApplicationListener{
}else if(response.type == ResponseType.manyArguments){ }else if(response.type == ResponseType.manyArguments){
err("Too many command arguments. Usage: " + response.command.text + " " + response.command.paramText); err("Too many command arguments. Usage: " + response.command.text + " " + response.command.paramText);
} }
System.out.print("> ");
} }
private void play(boolean wait, Runnable run){ private void play(boolean wait, Runnable run){