Allowed Steam name change / T4+5 reconstructor cost increase

This commit is contained in:
Anuken
2020-09-11 19:57:46 -04:00
parent 3d8fb1b6ca
commit 3feb9e76f0
5 changed files with 18 additions and 19 deletions

View File

@@ -65,7 +65,7 @@ public class Conduit extends LiquidBlock implements Autotiler{
@Override
public boolean blends(Tile tile, int rotation, int otherx, int othery, int otherrot, Block otherblock){
return otherblock.hasLiquids && otherblock.outputsLiquid && lookingAtEither(tile, rotation, otherx, othery, otherrot, otherblock);
return otherblock.hasLiquids && (otherblock.outputsLiquid || (lookingAt(tile, rotation, otherx, othery, otherblock))) && lookingAtEither(tile, rotation, otherx, othery, otherrot, otherblock);
}
@Override