This commit is contained in:
Anuken
2022-10-16 21:47:22 -04:00
parent 8030caea76
commit d644cbd93e
3 changed files with 3 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ public class ArmoredConduit extends Conduit{
@Override
public boolean blends(Tile tile, int rotation, int otherx, int othery, int otherrot, Block otherblock){
return (otherblock.outputsLiquid && blendsArmored(tile, rotation, otherx, othery, otherrot, otherblock)) ||
(lookingAt(tile, rotation, otherx, othery, otherblock) && otherblock.hasLiquids);
(lookingAt(tile, rotation, otherx, othery, otherblock) && otherblock.hasLiquids) || otherblock instanceof LiquidJunction;
}
public class ArmoredConduitBuild extends ConduitBuild{