added centrifuge recipe + moved itemUtils to its own class

This commit is contained in:
modmuss50 2015-04-12 10:15:53 +01:00
parent 91495286db
commit fcfc6ed1df
7 changed files with 129 additions and 28 deletions

View file

@ -1,5 +1,8 @@
package techreborn.init;
import net.minecraft.init.Items;
import techreborn.api.CentrifugeRecipie;
import techreborn.api.TechRebornAPI;
import techreborn.util.LogHelper;
public class ModRecipes {
@ -35,6 +38,7 @@ public class ModRecipes {
public static void addMachineRecipes()
{
TechRebornAPI.registerCentrifugeRecipe(new CentrifugeRecipie(Items.apple, 4, Items.beef, Items.baked_potato, null, null, 120));
LogHelper.info("Machine Recipes Added");
}