Fix blending

This commit is contained in:
Patrick 'Quezler' Mounier
2019-12-29 20:46:57 +01:00
parent 971b1542ba
commit 899137fbf7

View File

@@ -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;
}
}