Fixed Liquid Pipe Connections for updated Pipe Connection logic.
Signed-off-by: King Lemming <kinglemming@gmail.com>
This commit is contained in:
parent
6e76d4bec5
commit
092e40fb8f
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ public class PipeTransportLiquids extends PipeTransport implements ITankContaine
|
|||
if (tile instanceof ITankContainer) {
|
||||
ITankContainer liq = (ITankContainer) tile;
|
||||
|
||||
if (liq.getTanks(side) != null && liq.getTanks(side).length > 0)
|
||||
if (liq.getTanks(side.getOpposite()) != null && liq.getTanks(side.getOpposite()).length > 0)
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue