Fix bug which prevented Hoppers from inserting new bottles

Fixes #1801
This commit is contained in:
TfT_02 2014-01-19 15:35:27 +01:00
parent f3db90b6a9
commit 976c3b8494

View File

@ -352,11 +352,6 @@ public final class AlchemyPotionBrewer {
if (isValidIngredient(player, event.getItem())) {
scheduleCheck(player, brewingStand);
return;
}
else {
event.setCancelled(true);
return;
}
}