diff --git a/src/main/java/modtweaker2/mods/randomthings/handlers/ImbuingStation.java b/src/main/java/modtweaker2/mods/randomthings/handlers/ImbuingStation.java index c8894b2..c648a4c 100644 --- a/src/main/java/modtweaker2/mods/randomthings/handlers/ImbuingStation.java +++ b/src/main/java/modtweaker2/mods/randomthings/handlers/ImbuingStation.java @@ -62,6 +62,12 @@ public class ImbuingStation { for (ImbuingRecipe recipe : this.recipes) { if (recipe != null) { + for (ImbuingRecipe r : ImbuingRecipeHandler.imbuingRecipes) { + System.out.println(recipe.getIngredients() + " : " +r.getIngredients()); + System.out.println(recipe.toImbue() + " : " +r.toImbue()); + System.out.println(recipe.getResult() + " : " +r.getResult()); + + } if (ImbuingRecipeHandler.imbuingRecipes.remove(recipe)) { successful.add(recipe); } else { diff --git a/src/main/java/modtweaker2/utils/BaseListRemoval.java b/src/main/java/modtweaker2/utils/BaseListRemoval.java index e013336..96b6b6f 100644 --- a/src/main/java/modtweaker2/utils/BaseListRemoval.java +++ b/src/main/java/modtweaker2/utils/BaseListRemoval.java @@ -23,7 +23,6 @@ public abstract class BaseListRemoval extends BaseListModification { if (recipes.isEmpty()) { return; } - for (T recipe : this.recipes) { if (recipe != null) { if (this.list.remove(recipe)) {