Fixed Bug: #0727 - P2P fluid tunnel not outputting into dissimilar oriented tunnels.
This commit is contained in:
parent
88f2abbfd4
commit
efae157a3b
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ public class PartP2PLiquids extends PartP2PTunnel<PartP2PLiquids> implements IFl
|
||||||
IFluidHandler targ = l.getTarget();
|
IFluidHandler targ = l.getTarget();
|
||||||
if ( targ != null )
|
if ( targ != null )
|
||||||
{
|
{
|
||||||
if ( targ.canFill( side.getOpposite(), input ) )
|
if ( targ.canFill( l.side.getOpposite(), input ) )
|
||||||
outs.add( l );
|
outs.add( l );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue