Balancing

This commit is contained in:
Anuken
2019-02-05 00:22:55 -05:00
parent fe765e5a5b
commit 38b3ad07b7
10 changed files with 14 additions and 13 deletions

View File

@@ -44,6 +44,7 @@ public class NetworkIO{
stream.writeInt(player.id);
player.write(stream);
world.spawner.write(stream);
SaveIO.getSaveWriter().writeMap(stream);
stream.write(Team.all.length);
@@ -105,6 +106,7 @@ public class NetworkIO{
world.beginMapLoad();
//map
world.spawner.read(stream);
SaveIO.getSaveWriter().readMap(stream);
world.setMap(new Map(map, 0, 0));