From 5bf315527230c0d8c498efe0501a2d7e92a385e8 Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 8 Jun 2022 15:47:04 -0400 Subject: [PATCH] Fixed #6996 --- core/src/mindustry/logic/LStatements.java | 2 +- core/src/mindustry/maps/planet/TantrosPlanetGenerator.java | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/core/src/mindustry/logic/LStatements.java b/core/src/mindustry/logic/LStatements.java index 0fdfaf17c2..23ab30785d 100644 --- a/core/src/mindustry/logic/LStatements.java +++ b/core/src/mindustry/logic/LStatements.java @@ -1585,7 +1585,7 @@ public class LStatements{ fields(table, "team", team, s -> team = s); - if(type != FetchType.coreCount && type != FetchType.playerCount && type != FetchType.unitCount){ + if(type != FetchType.coreCount && type != FetchType.playerCount && type != FetchType.unitCount && type != FetchType.buildCount){ table.add(" # "); row(table); diff --git a/core/src/mindustry/maps/planet/TantrosPlanetGenerator.java b/core/src/mindustry/maps/planet/TantrosPlanetGenerator.java index a3803e4d36..3bb73e9b11 100644 --- a/core/src/mindustry/maps/planet/TantrosPlanetGenerator.java +++ b/core/src/mindustry/maps/planet/TantrosPlanetGenerator.java @@ -5,13 +5,11 @@ import arc.math.*; import arc.math.geom.*; import arc.util.*; import arc.util.noise.*; -import mindustry.*; import mindustry.content.*; import mindustry.game.*; import mindustry.maps.generators.*; import mindustry.type.*; import mindustry.world.*; -import mindustry.world.meta.*; import static mindustry.Vars.*; @@ -86,10 +84,6 @@ public class TantrosPlanetGenerator extends PlanetGenerator{ }); Schematics.placeLaunchLoadout(width / 2, height / 2); - - Vars.state.rules.env = Env.underwater; - - state.rules.canGameOver = false; } float rawHeight(Vec3 position){