Fixed non-applied FIS Flags

This commit is contained in:
Auxilor
2022-05-17 16:45:37 +01:00
parent 991290095b
commit 9ab8827e55

View File

@@ -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<ItemFlag> {