diff --git a/core/src/mindustry/content/Planets.java b/core/src/mindustry/content/Planets.java index b6d259882a..2af46e7a16 100644 --- a/core/src/mindustry/content/Planets.java +++ b/core/src/mindustry/content/Planets.java @@ -52,6 +52,8 @@ public class Planets implements ContentList{ totalRadius += 2.6f; lightSrcTo = 0.5f; lightDstFrom = 0.2f; + //TODO + alwaysUnlocked = true; }}; makeAsteroid("gier", erekir, Blocks.ferricStoneWall, Blocks.carbonWall, 0.4f, 7, 1f, gen -> { diff --git a/core/src/mindustry/entities/bullet/LiquidBulletType.java b/core/src/mindustry/entities/bullet/LiquidBulletType.java index 4363418094..2a388767a7 100644 --- a/core/src/mindustry/entities/bullet/LiquidBulletType.java +++ b/core/src/mindustry/entities/bullet/LiquidBulletType.java @@ -17,7 +17,7 @@ public class LiquidBulletType extends BulletType{ public Liquid liquid; public float puddleSize = 6f; public float orbSize = 3f; - public float boilTime = 15f; + public float boilTime = 5f; public LiquidBulletType(@Nullable Liquid liquid){ super(3.5f, 0); diff --git a/core/src/mindustry/graphics/EnvRenderers.java b/core/src/mindustry/graphics/EnvRenderers.java index 71b12a1f2f..f15c748eef 100644 --- a/core/src/mindustry/graphics/EnvRenderers.java +++ b/core/src/mindustry/graphics/EnvRenderers.java @@ -98,7 +98,7 @@ public class EnvRenderers{ } Draw.z(Layer.weather - 1); - Weather.drawNoiseLayers(tex, Color.scarlet, 1000f, 0.2f, 0.4f, 1f, 1f, 0f, + Weather.drawNoiseLayers(tex, Color.scarlet, 1000f, 0.24f, 0.4f, 1f, 1f, 0f, 4, -1.3f, 0.7f, 0.8f, 0.9f); Draw.reset(); }); diff --git a/core/src/mindustry/maps/planet/ErekirPlanetGenerator.java b/core/src/mindustry/maps/planet/ErekirPlanetGenerator.java index a4a0b299ca..215c215449 100644 --- a/core/src/mindustry/maps/planet/ErekirPlanetGenerator.java +++ b/core/src/mindustry/maps/planet/ErekirPlanetGenerator.java @@ -5,7 +5,6 @@ import arc.math.*; import arc.math.geom.*; import arc.util.*; import arc.util.noise.*; -import mindustry.*; import mindustry.ai.*; import mindustry.content.*; import mindustry.game.*; @@ -170,7 +169,9 @@ public class ErekirPlanetGenerator extends PlanetGenerator{ } }); - Vars.state.rules.environment = Env.scorching | Env.terrestrial | Env.groundWater; + //it is very hot + state.rules.attributes.set(Attribute.heat, 0.8f); + state.rules.environment = Env.scorching | Env.terrestrial | Env.groundWater; Schematics.placeLaunchLoadout(spawnX, spawnY); } }