Said goodbye to RecipeHanderer

A bunch of ModRecipes fixes
This commit is contained in:
joflashstudios 2015-06-08 10:45:21 -04:00
parent ffc4d5f9c3
commit 02fce02d7b
10 changed files with 714 additions and 848 deletions

View file

@ -2,13 +2,13 @@ package techreborn.compat.ee3;
import com.pahimar.ee3.api.exchange.RecipeRegistryProxy;
import techreborn.api.recipe.IBaseRecipeType;
import techreborn.api.recipe.RecipeHanderer;
import techreborn.api.recipe.RecipeHandler;
public class EmcValues {
public static void init()
{
for(IBaseRecipeType recipeType : RecipeHanderer.recipeList){
for(IBaseRecipeType recipeType : RecipeHandler.recipeList){
if(recipeType.getOutputsSize() == 1){
RecipeRegistryProxy.addRecipe(recipeType.getOutput(0), recipeType.getInputs());
}