Check if item is a brewing stand ingredient

This commit is contained in:
Fernando Pettinelli 2021-09-30 17:36:52 -03:00
parent 0263da253d
commit 6989c786b7

View File

@ -275,7 +275,7 @@ public class StorageContainerCache {
// fuel in 5th position, input in 4th
if (item.getType() == Material.BLAZE_POWDER)
check[4] = true;
else
else if (CompatibleMaterial.getMaterial(item).isBrewingStandIngredient())
check[3] = true;
break;