From fe8db2f978d1a16f6c3c1d4a3e74de1fe071bdda Mon Sep 17 00:00:00 2001 From: EggleEgg <125359838+EggleEgg@users.noreply.github.com> Date: Fri, 26 Dec 2025 00:55:51 +0100 Subject: [PATCH 1/2] Omura flare description change (#11492) --- core/assets/bundles/bundle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/assets/bundles/bundle.properties b/core/assets/bundles/bundle.properties index 6ce4ca5124..437a27e84c 100644 --- a/core/assets/bundles/bundle.properties +++ b/core/assets/bundles/bundle.properties @@ -2494,7 +2494,7 @@ unit.risso.description = Fires a barrage of missiles and bullets at enemy target unit.minke.description = Fires shells and standard bullets at enemy ground targets. unit.bryde.description = Fires long-range artillery shells and missiles at enemy targets. unit.sei.description = Fires a barrage of missiles and armor-piercing bullets at enemy targets. -unit.omura.description = Fires a long-range piercing railgun bolt at enemy targets. Constructs flare units. +unit.omura.description = Fires a long-range piercing railgun bolt at enemy targets. unit.alpha.description = Defends the Shard core from enemies. Builds structures. unit.beta.description = Defends the Foundation core from enemies. Builds structures. unit.gamma.description = Defends the Nucleus core from enemies. Builds structures. From 34d276ff4340d430a3baf1b4acfc1685a36b1d03 Mon Sep 17 00:00:00 2001 From: EggleEgg <125359838+EggleEgg@users.noreply.github.com> Date: Fri, 26 Dec 2025 00:56:19 +0100 Subject: [PATCH 2/2] Dont buff liquid capacity in turrets, this is cancerous (#11491) * Dont buff liquid capacity in turrets, this is cancerous * liquid capacity 120 spectre, 60 to fs and meltdown --- core/src/mindustry/content/Blocks.java | 3 +++ core/src/mindustry/world/blocks/defense/turrets/Turret.java | 1 + 2 files changed, 4 insertions(+) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 566c2132c0..fd3cd223ca 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -4220,6 +4220,7 @@ public class Blocks{ envEnabled |= Env.space; coolantMultiplier = 0.4f; + liquidCapacity = 60f; scaledHealth = 150; coolant = consumeCoolant(1f); @@ -4275,6 +4276,7 @@ public class Blocks{ reload = 7f; recoilTime = reload * 2f; coolantMultiplier = 0.5f; + liquidCapacity = 120f; ammoUseEffect = Fx.casing3; range = 260f; inaccuracy = 3f; @@ -4322,6 +4324,7 @@ public class Blocks{ }}; scaledHealth = 200; + liquidCapacity = 60f; coolant = consumeCoolant(0.5f); consumePower(17f); }}; diff --git a/core/src/mindustry/world/blocks/defense/turrets/Turret.java b/core/src/mindustry/world/blocks/defense/turrets/Turret.java index 84a75af44b..9f8e5edd4a 100644 --- a/core/src/mindustry/world/blocks/defense/turrets/Turret.java +++ b/core/src/mindustry/world/blocks/defense/turrets/Turret.java @@ -155,6 +155,7 @@ public class Turret extends ReloadTurret{ public Turret(String name){ super(name); + liquidCapacity = 20f; outlinedIcon = 1; drawLiquidLight = false; sync = true;