Fix coin count not updating in kat upgrade recipes

This commit is contained in:
Linnea Gräf
2024-08-08 02:09:26 +02:00
parent b338db1a11
commit 325ea56989

View File

@@ -66,7 +66,7 @@ data class SBItemStack(
fun getStackSize() = stackSize
fun setStackSize(newSize: Int) {
this.stackSize = stackSize
this.stackSize = newSize
this.itemStack_ = null
}