From f4dcd37be34e523b64c67c16bd71cf82680f7ab3 Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 19 Jun 2023 10:56:30 -0400 Subject: [PATCH] Conduit padCorners fix --- core/src/mindustry/world/blocks/liquid/Conduit.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/liquid/Conduit.java b/core/src/mindustry/world/blocks/liquid/Conduit.java index 118d4d0298..06b44c3ae4 100644 --- a/core/src/mindustry/world/blocks/liquid/Conduit.java +++ b/core/src/mindustry/world/blocks/liquid/Conduit.java @@ -188,7 +188,7 @@ public class Conduit extends LiquidBlock implements Autotiler{ int gas = liquids.current().gas ? 1 : 0; float ox = 0f, oy = 0f; int wrapRot = (rotation + offset) % 4; - TextureRegion liquidr = bits == 1 ? rotateRegions[wrapRot][gas][frame] : renderer.fluidFrames[gas][frame]; + TextureRegion liquidr = bits == 1 && padCorners ? rotateRegions[wrapRot][gas][frame] : renderer.fluidFrames[gas][frame]; if(bits == 1 && padCorners){ ox = rotateOffsets[wrapRot][0];