Added Items, Fixed Some Recipe handler errors, and fixed Parts not saving.

This commit is contained in:
AlgorithmX2
2014-02-25 22:34:05 -06:00
parent 9575c8872c
commit 9161ad0c13
6 changed files with 30 additions and 8 deletions
+3 -2
View File
@@ -114,7 +114,8 @@ public class RecipeHandler implements IRecipeHandler
catch (Exception err)
{
AELog.warning( "Error Loading Recipe File:" + path );
AELog.error( err );
if ( data.exceptions )
AELog.error( err );
return;
}
@@ -320,7 +321,7 @@ public class RecipeHandler implements IRecipeHandler
}
catch (RecipeError e)
{
AELog.warning( "Recipe Error near line:" + line + " in " + file + " with: " + tokens.toString() );
AELog.warning( "Recipe Error '" + e.getMessage() + "' near line:" + line + " in " + file + " with: " + tokens.toString() );
if ( data.exceptions )
AELog.error( e );
if ( data.crash )