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
@@ -156,7 +156,7 @@ public class CraftGuide extends CraftGuideAPIObject implements IIntegrationModul
}
catch (Exception e)
{
if ( errCount++ >= 5 )
if ( errCount >= 5 )
{
CraftGuideLog
.log( "CraftGuide DefaultRecipeProvider: Stack trace limit reached, further stack traces from this invocation will not be logged to the console. They will still be logged to (.minecraft)/config/CraftGuide/CraftGuide.log",
@@ -167,6 +167,7 @@ public class CraftGuide extends CraftGuideAPIObject implements IIntegrationModul
{
e.printStackTrace();
}
errCount++;
CraftGuideLog.log( e );
}