diff --git a/core/assets/maps/glacier.msav b/core/assets/maps/glacier.msav index ecd814405a..73796f7643 100644 Binary files a/core/assets/maps/glacier.msav and b/core/assets/maps/glacier.msav differ diff --git a/core/assets/maps/veins.msav b/core/assets/maps/veins.msav index 38f09691e6..3273feb74b 100644 Binary files a/core/assets/maps/veins.msav and b/core/assets/maps/veins.msav differ diff --git a/core/src/mindustry/io/SaveFileReader.java b/core/src/mindustry/io/SaveFileReader.java index 79299987a6..ccbbc4831c 100644 --- a/core/src/mindustry/io/SaveFileReader.java +++ b/core/src/mindustry/io/SaveFileReader.java @@ -63,7 +63,7 @@ public abstract class SaveFileReader{ protected int lastRegionLength; protected @Nullable CounterInputStream currCounter; - protected void region(String name, DataInput stream, CounterInputStream counter, IORunner cons) throws IOException{ + public void region(String name, DataInput stream, CounterInputStream counter, IORunner cons) throws IOException{ counter.resetCount(); this.currCounter = counter; int length; @@ -78,7 +78,7 @@ public abstract class SaveFileReader{ } } - protected void region(String name, DataOutput stream, IORunner cons) throws IOException{ + public void region(String name, DataOutput stream, IORunner cons) throws IOException{ try{ writeChunk(stream, cons); }catch(Throwable e){ diff --git a/core/src/mindustry/maps/generators/BaseGenerator.java b/core/src/mindustry/maps/generators/BaseGenerator.java index 035d654c10..c0f4e2e705 100644 --- a/core/src/mindustry/maps/generators/BaseGenerator.java +++ b/core/src/mindustry/maps/generators/BaseGenerator.java @@ -143,7 +143,7 @@ public class BaseGenerator{ if(tiles == null) return; for(Tile tile : tiles){ - if(tile.isCenter() && tile.block() instanceof PowerNode){ + if(tile.isCenter() && tile.block() instanceof PowerNode && tile.team() == state.rules.waveTeam){ tile.build.placed(); } } diff --git a/core/src/mindustry/ui/dialogs/ContentInfoDialog.java b/core/src/mindustry/ui/dialogs/ContentInfoDialog.java index fe3073a208..0e85387d36 100644 --- a/core/src/mindustry/ui/dialogs/ContentInfoDialog.java +++ b/core/src/mindustry/ui/dialogs/ContentInfoDialog.java @@ -75,7 +75,6 @@ public class ContentInfoDialog extends BaseDialog{ } } - if(content.details != null){ table.add("[gray]" + content.details).pad(6).padTop(20).width(400f).wrap().fillX(); table.row();