Compare commits

...

2 Commits

Author SHA1 Message Date
Auxilor
ab6d4c7aa2 Updated to 6.35.9 2022-05-17 16:53:57 +01:00
Auxilor
9ab8827e55 Fixed non-applied FIS Flags 2022-05-17 16:45:37 +01:00
2 changed files with 5 additions and 1 deletions

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

View File

@@ -1,3 +1,3 @@
version = 6.35.8
version = 6.35.9
plugin-name = eco
kotlin.code.style = official