Fixed Liquid Pipe Connections for updated Pipe Connection logic.

Signed-off-by: King Lemming <kinglemming@gmail.com>
This commit is contained in:
King Lemming 2013-05-11 14:34:05 -04:00
parent 6e76d4bec5
commit 092e40fb8f

View file

@ -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;
}