Proc Fix
This commit is contained in:
parent
58d753a5e6
commit
1d56d4fcb6
1 changed files with 2 additions and 2 deletions
|
@ -259,7 +259,7 @@ public class GT_MetaTileEntity_ProcessingArray extends GT_MetaTileEntity_MultiBl
|
||||||
//In case recipe is too OP for that machine
|
//In case recipe is too OP for that machine
|
||||||
if (mMaxProgresstime == Integer.MAX_VALUE - 1 && mEUt == Integer.MAX_VALUE - 1)
|
if (mMaxProgresstime == Integer.MAX_VALUE - 1 && mEUt == Integer.MAX_VALUE - 1)
|
||||||
return false;
|
return false;
|
||||||
this.mEUt = GT_Utility.safeInt(this.mEUt*i,1);
|
this.mEUt = GT_Utility.safeInt((long)this.mEUt*i,1);
|
||||||
if (mEUt == Integer.MAX_VALUE - 1)
|
if (mEUt == Integer.MAX_VALUE - 1)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -313,7 +313,7 @@ public class GT_MetaTileEntity_ProcessingArray extends GT_MetaTileEntity_MultiBl
|
||||||
return true;
|
return true;
|
||||||
}/* else{
|
}/* else{
|
||||||
...remoteRecipeCheck()
|
...remoteRecipeCheck()
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue