mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Merge pull request #4226 from Durburz/master
Fix brewing stand not consuming items
This commit is contained in:
commit
efcb2d0c14
@ -61,7 +61,7 @@ public final class AlchemyPotionBrewer {
|
||||
|
||||
ItemStack ingredient = inventory.getIngredient().clone();
|
||||
|
||||
if (isEmpty(ingredient) && !isValidIngredient(player, ingredient)) {
|
||||
if (!isEmpty(ingredient) && isValidIngredient(player, ingredient)) {
|
||||
if (ingredient.getAmount() <= 1) {
|
||||
inventory.setIngredient(null);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user