check that miner can't move down
This commit is contained in:
parent
c39c6f8bea
commit
90442a8d91
1 changed files with 3 additions and 2 deletions
|
@ -125,10 +125,11 @@ public class GT_MetaTileEntity_AdvMiner2 extends GT_MetaTileEntity_MultiBlockBas
|
|||
if (mMineList.isEmpty()) {
|
||||
if(getBaseMetaTileEntity().getBlockOffset(ForgeDirection.getOrientation(getBaseMetaTileEntity().getBackFacing()).offsetX, getYOfPumpHead() - 1 - getBaseMetaTileEntity().getYCoord(), ForgeDirection.getOrientation(getBaseMetaTileEntity().getBackFacing()).offsetZ) != Blocks.bedrock){
|
||||
if (mEnergyHatches.size() > 0 && mEnergyHatches.get(0).getEUVar() > (512 + getMaxInputVoltage() * 4)) {
|
||||
moveOneDown();
|
||||
if (!moveOneDown())
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
stopMachine();
|
||||
stopMachine();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue