Merge pull request #833 from codewarrior0/patch-1
Fix #830 - Maint Cover does not emit if rotor needs maint
This commit is contained in:
commit
868fe1f77d
1 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,8 @@ public class GT_Cover_NeedMaintainance extends GT_CoverBehavior {
|
|||
ItemStack tTurbine = multi.getRealInventory()[1];
|
||||
long tMax = GT_MetaGenerated_Tool.getToolMaxDamage(tTurbine);
|
||||
long tCur = GT_MetaGenerated_Tool.getToolDamage(tTurbine);
|
||||
if(tCur > tMax*8/10);
|
||||
if(tCur < tMax*2/10)
|
||||
needsRepair = true;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue