Why it didnt staged...
This commit is contained in:
parent
ce13329d92
commit
298e1a6008
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ public class GT_MetaTileEntity_OilDrill extends GT_MetaTileEntity_MultiBlockBase
|
||||||
} else if (tFluid.amount == 0) {//no fluid remaining
|
} else if (tFluid.amount == 0) {//no fluid remaining
|
||||||
return false;//stops processing??
|
return false;//stops processing??
|
||||||
} else {
|
} else {
|
||||||
tFluid.amount = Math.max(Math.min(tFluid.amount/5000,5000),1);//give the fluid... adds negative values of lacking fluid, zero if there is MOOOORE
|
tFluid.amount = Math.max(Math.min(tFluid.amount/50000,1000),1);//More like pressure :]
|
||||||
GT_Utility.undergroundOil(getBaseMetaTileEntity().getWorld(), getBaseMetaTileEntity().getXCoord()>>4, getBaseMetaTileEntity().getZCoord()>>4,true,tFluid.amount);
|
GT_Utility.undergroundOil(getBaseMetaTileEntity().getWorld(), getBaseMetaTileEntity().getXCoord()>>4, getBaseMetaTileEntity().getZCoord()>>4,true,tFluid.amount);
|
||||||
}
|
}
|
||||||
this.mEfficiency = (10000 - (getIdealStatus() - getRepairStatus()) * 1000);
|
this.mEfficiency = (10000 - (getIdealStatus() - getRepairStatus()) * 1000);
|
||||||
|
|
Loading…
Reference in a new issue