diff options
Diffstat (limited to 'ihl/processing/chemistry/RefluxCondenserTileEntity.java')
| -rw-r--r-- | ihl/processing/chemistry/RefluxCondenserTileEntity.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ihl/processing/chemistry/RefluxCondenserTileEntity.java b/ihl/processing/chemistry/RefluxCondenserTileEntity.java index b6cbcb0..83eb108 100644 --- a/ihl/processing/chemistry/RefluxCondenserTileEntity.java +++ b/ihl/processing/chemistry/RefluxCondenserTileEntity.java @@ -139,7 +139,10 @@ public class RefluxCondenserTileEntity extends TileEntity implements IWrenchable @Override
public FluidTankInfo[] getTankInfo(ForgeDirection arg0)
{
- return columnBottom.getTankInfo(arg0);
+ if(columnBottom!=null)
+ return columnBottom.getTankInfo(arg0);
+ else
+ return new FluidTankInfo[] {new FluidTankInfo(null, 8000)};
}
}
|
