diff --git a/eco-core/core-nms/nms-common/src/main/kotlin/com/willfp/eco/internal/spigot/proxy/common/item/EcoFastItemStack.kt b/eco-core/core-nms/nms-common/src/main/kotlin/com/willfp/eco/internal/spigot/proxy/common/item/EcoFastItemStack.kt index dc6025b6c..909216736 100644 --- a/eco-core/core-nms/nms-common/src/main/kotlin/com/willfp/eco/internal/spigot/proxy/common/item/EcoFastItemStack.kt +++ b/eco-core/core-nms/nms-common/src/main/kotlin/com/willfp/eco/internal/spigot/proxy/common/item/EcoFastItemStack.kt @@ -274,13 +274,7 @@ class EcoFastItemStack( override fun hashCode(): Int { var result = handle.getTag()?.hashCode() ?: 1 result = 31 * result + Item.getId(handle.getItem()) - - val custom = com.willfp.eco.core.items.Items.getCustomItem(bukkit) - - if (custom != null) { - result = 31 * result + custom.key.toString().hashCode() - } - + result = 31 * result + baseTag.hashCode() result = 31 * result + type.hashCode() return result }