diff --git a/build.gradle b/build.gradle index c5e851258f..1a5b493aab 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ allprojects { appName = 'Mindustry' gdxVersion = '1.9.8' roboVMVersion = '2.3.0' - uCoreVersion = '9969ed07b1' + uCoreVersion = '76dc741b49' getVersionString = { String buildVersion = getBuildVersion() diff --git a/server/src/io/anuke/mindustry/server/ServerControl.java b/server/src/io/anuke/mindustry/server/ServerControl.java index 6e6df2dbf9..5345a94d21 100644 --- a/server/src/io/anuke/mindustry/server/ServerControl.java +++ b/server/src/io/anuke/mindustry/server/ServerControl.java @@ -270,11 +270,11 @@ public class ServerControl extends Module{ }); handler.register("setsector ", "Sets the next sector to be played. Does not affect current game.", arg -> { - //TODO try{ Settings.putInt("sector_x", Integer.parseInt(arg[0])); Settings.putInt("sector_y", Integer.parseInt(arg[1])); Settings.save(); + info("Sector position set."); }catch(NumberFormatException e){ err("Invalid coordinates."); }