diff --git a/core/assets/version.properties b/core/assets/version.properties index 1cb7587d30..f0e6affe7d 100644 --- a/core/assets/version.properties +++ b/core/assets/version.properties @@ -1,5 +1,5 @@ #Autogenerated file. Do not modify. -#Mon Apr 16 22:45:45 EDT 2018 +#Mon Apr 16 22:47:36 EDT 2018 version=release androidBuildCode=932 name=Mindustry diff --git a/core/src/io/anuke/mindustry/entities/Player.java b/core/src/io/anuke/mindustry/entities/Player.java index c17f920e24..b2ae08d7fb 100644 --- a/core/src/io/anuke/mindustry/entities/Player.java +++ b/core/src/io/anuke/mindustry/entities/Player.java @@ -315,7 +315,10 @@ public class Player extends Unit{ @Override public void writeSave(DataOutputStream stream) throws IOException { stream.writeBoolean(isLocal); - if(isLocal) super.writeSave(stream); + + if(isLocal){ + super.writeSave(stream); + } } @Override