Fix minetweaker changes not showing in JEI, closes #1068
This commit is contained in:
parent
b4c873f54c
commit
aa50cfa7b9
1 changed files with 5 additions and 0 deletions
|
@ -56,6 +56,7 @@ public class CTGeneric {
|
|||
@Override
|
||||
public void apply() {
|
||||
RecipeHandler.addRecipe(recipe);
|
||||
MineTweakerAPI.getIjeiRecipeRegistry().addRecipe(recipe);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -66,6 +67,7 @@ public class CTGeneric {
|
|||
@Override
|
||||
public void undo() {
|
||||
RecipeHandler.recipeList.remove(recipe);
|
||||
MineTweakerAPI.getIjeiRecipeRegistry().removeRecipe(recipe);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -101,6 +103,7 @@ public class CTGeneric {
|
|||
if (ItemUtils.isItemEqual(stack, output, true, false)) {
|
||||
removedRecipes.add((BaseRecipe) recipeType);
|
||||
RecipeHandler.recipeList.remove(recipeType);
|
||||
MineTweakerAPI.getIjeiRecipeRegistry().removeRecipe(recipeType);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -113,6 +116,7 @@ public class CTGeneric {
|
|||
for (BaseRecipe recipe : removedRecipes) {
|
||||
if (recipe != null) {
|
||||
RecipeHandler.addRecipe(recipe);
|
||||
MineTweakerAPI.getIjeiRecipeRegistry().addRecipe(recipe);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -171,6 +175,7 @@ public class CTGeneric {
|
|||
for (BaseRecipe recipe : removedRecipes) {
|
||||
if (recipe != null) {
|
||||
RecipeHandler.addRecipe(recipe);
|
||||
MineTweakerAPI.getIjeiRecipeRegistry().addRecipe(recipe);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue