Updated uCore, removed debug save message

This commit is contained in:
Anuken
2017-12-30 10:44:08 -05:00
parent 7e2502dbe4
commit 1cb2609be8
2 changed files with 1 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ allprojects {
appName = "Mindustry" appName = "Mindustry"
gdxVersion = '1.9.8' gdxVersion = '1.9.8'
aiVersion = '1.8.1' aiVersion = '1.8.1'
uCoreVersion = '2a09b97'; uCoreVersion = 'afc7fe249f';
} }
repositories { repositories {

View File

@@ -42,7 +42,6 @@ public class Saves {
time += Timers.delta(); time += Timers.delta();
if(time > Settings.getInt("saveinterval")*60) { if(time > Settings.getInt("saveinterval")*60) {
saving = true; saving = true;
Vars.ui.showError("sacving");
exec.submit(() -> { exec.submit(() -> {
SaveIO.saveToSlot(current.index); SaveIO.saveToSlot(current.index);