From ef5d5abfff4cf6876a95237fe790a27ae86bc736 Mon Sep 17 00:00:00 2001 From: Efsfse2280 Date: Sat, 28 Feb 2026 00:01:27 -0500 Subject: [PATCH 1/2] Update UnitTypes.java (#11727) --- core/src/mindustry/content/UnitTypes.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/mindustry/content/UnitTypes.java b/core/src/mindustry/content/UnitTypes.java index 03f118dc36..1a8435c424 100644 --- a/core/src/mindustry/content/UnitTypes.java +++ b/core/src/mindustry/content/UnitTypes.java @@ -2561,6 +2561,7 @@ public class UnitTypes{ lifetime = 60f; buildingDamageMultiplier = 0.01f; + homingPower = 0.02f; }}; }}); }}; @@ -2611,6 +2612,7 @@ public class UnitTypes{ lifetime = 60f; buildingDamageMultiplier = 0.01f; + homingPower = 0.03f; }}; }}); }}; From f9fa92afc12123beedbee018df44d199deb4ef56 Mon Sep 17 00:00:00 2001 From: Cardillan <122014763+cardillan@users.noreply.github.com> Date: Sat, 28 Feb 2026 06:01:56 +0100 Subject: [PATCH 2/2] Fix draw image bug with tiled displays. (#11721) --- core/src/mindustry/world/blocks/logic/LogicBlock.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/logic/LogicBlock.java b/core/src/mindustry/world/blocks/logic/LogicBlock.java index 7c047ce93d..0f879b7a03 100644 --- a/core/src/mindustry/world/blocks/logic/LogicBlock.java +++ b/core/src/mindustry/world/blocks/logic/LogicBlock.java @@ -764,6 +764,8 @@ public class LogicBlock extends Block{ write.s(waitIndices.get(i)); write.f(waitValues.get(i)); } + + write.f(accumulator); } @Override @@ -823,6 +825,8 @@ public class LogicBlock extends Block{ waitIndices.add(index); waitValues.add(value); } + + accumulator = read.f(); } loadBlock = () -> updateCode(code, false, asm -> { @@ -843,7 +847,7 @@ public class LogicBlock extends Block{ } } - //wait times can only be applied once the instructions are loaded an exist + //wait times can only be applied once the instructions are loaded and exist for(int i = 0; i < waitIndices.size; i++){ int waitIndex = waitIndices.get(i); if(waitIndex >= 0 && waitIndex < asm.instructions.length && asm.instructions[waitIndex] instanceof WaitI wait){