Skip to content

Commit

Permalink
Fix recipe remover (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba6000 committed May 12, 2023
1 parent f3cd885 commit a1b4788
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,7 @@ public static void removeRecipeShapedDelayed(Object aOutput) {
* @author kuba6000
*/
public static void removeRecipeByOutputDelayed(Object aOutput) {
addToBuffer(
getItemsHashed(aOutput),
r -> r instanceof ShapelessOreRecipe || r instanceof ShapelessRecipes
|| r instanceof ShapedOreRecipe
|| r instanceof ShapedRecipes);
addToBuffer(getItemsHashed(aOutput), r -> true);
}

public void run() {
Expand Down

0 comments on commit a1b4788

Please sign in to comment.