Merge pull request #1320 from taelnia/IronPipeFacingFix
Prevent Iron Pipes from switching to plugged output
This commit is contained in:
commit
b37f33c104
1 changed files with 3 additions and 0 deletions
|
@ -47,6 +47,9 @@ public abstract class PipeLogicIron {
|
|||
|
||||
|
||||
private boolean isValidFacing(ForgeDirection side) {
|
||||
if (!pipe.container.isPipeConnected(side))
|
||||
return false;
|
||||
|
||||
TileBuffer[] tileBuffer = pipe.container.getTileCache();
|
||||
if (tileBuffer == null)
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue