Skip to content

Commit

Permalink
fixed inverted condition for recipe crawl. cant get one right today
Browse files Browse the repository at this point in the history
  • Loading branch information
MehVahdJukaar committed Jun 11, 2024
1 parent a8ec42a commit bd499d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private static void digest(Recipe<?> recipe, RegistryAccess access) {
for (Ingredient ingredient : ingredients) {
for (ItemStack inStack : ingredient.getItems()) {
//don't include catalyst items. This includes partial ones like buckets and such
if (!inStack.getCraftingRemainingItem().isEmpty()) {
if (inStack.getCraftingRemainingItem().isEmpty()) {
vanillaRecipeDigestion.put(inStack.getItem(), out);
backwardsVanillaDigestion.put(outItem, inStack);
}
Expand Down

0 comments on commit bd499d3

Please sign in to comment.