diff --git a/core/src/mindustry/world/blocks/distribution/CompressedConveyor.java b/core/src/mindustry/world/blocks/distribution/CompressedConveyor.java index 17ec47f71f..7cfe1995b7 100644 --- a/core/src/mindustry/world/blocks/distribution/CompressedConveyor.java +++ b/core/src/mindustry/world/blocks/distribution/CompressedConveyor.java @@ -116,4 +116,9 @@ public class CompressedConveyor extends ArmoredConveyor{ public void handleStack(Item item, int amount, Tile tile, Unit source){ // } + + @Override + public boolean blendsArmored(Tile tile, int rotation, int otherx, int othery, int otherrot, Block otherblock){ + return super.blendsArmored(tile, rotation, otherx, othery, otherrot, otherblock) && otherblock.compressable; + } }