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 9da47ff9..a5e88997 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 @@ -154,12 +154,16 @@ class EcoFastItemStack( for (f in hideFlags) { this.flagBits = this.flagBits or getBitModifier(f) } + + apply() } override fun removeItemFlags(vararg hideFlags: ItemFlag) { for (f in hideFlags) { this.flagBits = this.flagBits and getBitModifier(f).inv() } + + apply() } override fun getItemFlags(): Set {