Random text changes.
This commit is contained in:
parent
cb0f1d4d2c
commit
bd816f505b
2 changed files with 3 additions and 3 deletions
|
@ -106,7 +106,7 @@ public class GT_MetaTileEntity_Hatch_Maintenance extends GT_MetaTileEntity_Hatch
|
|||
|
||||
@Override
|
||||
public MetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
|
||||
if (aTileEntity.getMetaTileID() == 111)//TODO CHECK
|
||||
if (aTileEntity.getMetaTileID() == 111)
|
||||
return new GT_MetaTileEntity_Hatch_Maintenance(mName, mTier, mDescriptionArray, mTextures, true);
|
||||
return new GT_MetaTileEntity_Hatch_Maintenance(mName, mTier, mDescriptionArray, mTextures, false);
|
||||
}
|
||||
|
|
|
@ -218,9 +218,9 @@ public class GT_NEI_DefaultHandler
|
|||
drawText(10, 113, "Time: " + (tDuration < 20 ? "< 1" : Integer.valueOf(tDuration / 20)) + " secs", -16777216);
|
||||
}
|
||||
int tSpecial = ((CachedDefaultRecipe) this.arecipes.get(aRecipeIndex)).mRecipe.mSpecialValue;
|
||||
if (tSpecial == -100 && GT_Mod.gregtechproxy.mLowGravProcessing) {
|
||||
if (tSpecial == -100 && GT_Mod.gregtechproxy.mLowGravProcessing) {//IF mSpecialValue == -100 THEN needs Low Gravity
|
||||
drawText(10, 123, "Needs Low Gravity", -16777216);
|
||||
} else if (tSpecial == -200) {
|
||||
} else if (tSpecial == -200) {//IF mSpecialValue == -200 THEN needs cleanroom
|
||||
drawText(10, 123, "Needs Cleanroom", -16777216);
|
||||
} else if ((GT_Utility.isStringValid(this.mRecipeMap.mNEISpecialValuePre)) || (GT_Utility.isStringValid(this.mRecipeMap.mNEISpecialValuePost))) {
|
||||
drawText(10, 123, this.mRecipeMap.mNEISpecialValuePre + tSpecial * this.mRecipeMap.mNEISpecialValueMultiplier + this.mRecipeMap.mNEISpecialValuePost, -16777216);
|
||||
|
|
Loading…
Reference in a new issue