Fix Reactor Ports, again
This commit is contained in:
parent
6aa6591628
commit
ceb1c37b00
1 changed files with 3 additions and 3 deletions
|
@ -84,10 +84,10 @@ public class TileEntityReactorPort extends TileEntityReactorBlock implements IFl
|
||||||
{
|
{
|
||||||
CableUtils.emit(this);
|
CableUtils.emit(this);
|
||||||
|
|
||||||
IFluidTank tank = getReactor().getSteamTank();
|
if(fluidEject && getReactor() != null && getReactor().getSteamTank().getFluid() != null)
|
||||||
|
|
||||||
if(fluidEject && getReactor() != null && tank.getFluid() != null)
|
|
||||||
{
|
{
|
||||||
|
IFluidTank tank = getReactor().getSteamTank();
|
||||||
|
|
||||||
for(ForgeDirection side : ForgeDirection.VALID_DIRECTIONS)
|
for(ForgeDirection side : ForgeDirection.VALID_DIRECTIONS)
|
||||||
{
|
{
|
||||||
TileEntity tile = Coord4D.get(this).getFromSide(side).getTileEntity(worldObj);
|
TileEntity tile = Coord4D.get(this).getFromSide(side).getTileEntity(worldObj);
|
||||||
|
|
Loading…
Reference in a new issue