Extract ++ and -- from expressions

This commit is contained in:
thatsIch
2015-03-26 11:07:26 +01:00
parent b31f2df58d
commit 9bf8b4388f
26 changed files with 89 additions and 40 deletions
@@ -325,7 +325,7 @@ public class CraftingJob implements Runnable, ICraftingJob
public void handlePausing() throws InterruptedException
{
if ( this.incTime++ > 100 )
if ( this.incTime > 100 )
{
this.incTime = 0;
@@ -354,6 +354,7 @@ public class CraftingJob implements Runnable, ICraftingJob
if ( Thread.interrupted() )
throw new InterruptedException();
}
this.incTime++;
}
private void log(String string)