Moved Recipe Registration to Init, Added Recipe Baking.

This commit is contained in:
AlgorithmX2
2014-07-25 17:49:49 -05:00
parent 846e8a0384
commit 31cb594f4d
10 changed files with 135 additions and 63 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ public class Shapeless implements ICraftHandler, IWebsiteSeralizer
{
List<Object> args = new ArrayList<Object>();
for (IIngredient i : inputs)
args.add( i.getItemStackSet() );
args.add( i );
ItemStack outIS = output.getItemStack();
@@ -54,7 +54,7 @@ public class Shapeless implements ICraftHandler, IWebsiteSeralizer
catch (Throwable e)
{
AELog.error( e );
throw new RegistrationError( "Erro while adding shapeless recipe." );
throw new RegistrationError( "Error while adding shapeless recipe." );
}
}