Skip to content

Commit e8a9b43

Browse files
committed
fix: Fix shift-clicking oven recipes not actually moving a stack
1 parent 892854e commit e8a9b43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common/src/main/java/net/blay09/mods/cookingforblockheads/menu/KitchenMenu.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ public void craft(RecipeDisplayId recipeDisplayId, NonNullList<ItemStack> locked
429429
}
430430
}
431431
}
432-
} else {
432+
} else if (!(recipeHandler instanceof KitchenAbstractCookingRecipeHandler)) { // not pretty, but a proper solution would break API
433433
break;
434434
}
435435
} else {

0 commit comments

Comments
 (0)