diff --git a/src/main/java/com/songoda/epichoppers/hopper/levels/modules/ModuleAutoCrafting.java b/src/main/java/com/songoda/epichoppers/hopper/levels/modules/ModuleAutoCrafting.java index 2a6cd25..67a7515 100644 --- a/src/main/java/com/songoda/epichoppers/hopper/levels/modules/ModuleAutoCrafting.java +++ b/src/main/java/com/songoda/epichoppers/hopper/levels/modules/ModuleAutoCrafting.java @@ -66,7 +66,9 @@ public class ModuleAutoCrafting extends Module { for (ItemStack item : recipe.recipe) { int amountHave = 0; for (ItemStack hopperItem : hopperCache.cachedInventory) { - if (hopperItem != null && Methods.isSimilarMaterial(hopperItem, item)) + if (hopperItem != null + && !(hopperItem.hasItemMeta() && hopperItem.getItemMeta().hasDisplayName()) + && Methods.isSimilarMaterial(hopperItem, item)) amountHave += hopperItem.getAmount(); } if (amountHave < item.getAmount()) {