Merge pull request #841 from KingLemming/master
Updated Liquid Pipe Connection Logic
This commit is contained in:
commit
d2711c7427
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