Schedule check after putting a new bottle in the brewing stand

This commit is contained in:
TfT_02 2014-02-15 01:37:41 +01:00
parent f79a4741cc
commit 7f9ada14c8

View File

@ -163,8 +163,9 @@ public class InventoryListener implements Listener {
Player player = (Player) whoClicked;
BrewingStand stand = (BrewingStand) holder;
ItemStack clicked = event.getCurrentItem();
ItemStack cursor = event.getCursor();
if (clicked != null && clicked.getType() == Material.POTION) {
if ((clicked != null && clicked.getType() == Material.POTION) || (cursor != null && cursor.getType() == Material.POTION)) {
AlchemyPotionBrewer.scheduleCheck(player, stand);
return;
}
@ -193,7 +194,6 @@ public class InventoryListener implements Listener {
}
}
else if (slot == InventoryType.SlotType.FUEL) {
ItemStack cursor = event.getCursor();
boolean emptyClicked = AlchemyPotionBrewer.isEmpty(clicked);
if (AlchemyPotionBrewer.isEmpty(cursor)) {