From 66c81246b6ee8409476f9a0069585e4e165f6f19 Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Mon, 10 Feb 2020 13:02:21 +0100 Subject: [PATCH] Fix single tile check if blendbit is 0 --- .../src/mindustry/world/blocks/distribution/CraterConveyor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/distribution/CraterConveyor.java b/core/src/mindustry/world/blocks/distribution/CraterConveyor.java index 5863ef2188..ae4c47359a 100644 --- a/core/src/mindustry/world/blocks/distribution/CraterConveyor.java +++ b/core/src/mindustry/world/blocks/distribution/CraterConveyor.java @@ -285,7 +285,7 @@ public class CraterConveyor extends Block implements Autotiler{ if( entity.blendbit1 == 0 // 1 input from the back, 0 from the sides || entity.blendbit1 == 2 // 1 input from the back, 1 from the sides || entity.blendbit1 == 3 // 1 input from the back, 2 from the sides - ) cons.get(tile.back()); + ) if(blends(tile, tile.rotation(), 2)) cons.get(tile.back()); if( entity.blendbit1 == 3 // 1 input from the back, 2 from the sides || entity.blendbit1 == 4 // 0 input from the back, 2 from the sides