Passing Int.MAX_VALUE to simple container slot factory will make its slots ignore max stack size completely

This commit is contained in:
DBotThePony 2025-03-29 13:33:07 +07:00
parent f5e21f5582
commit 571c7bc339
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 15 additions and 0 deletions

View File

@ -133,6 +133,13 @@ open class ContainerSlot(
override val maxStackSize: Int
get() = this@Simple.maxStackSize
override fun maxStackSize(item: ItemStack): Int {
if (maxStackSize == Int.MAX_VALUE)
return Int.MAX_VALUE
return super.maxStackSize(item)
}
override fun notifyChanged(old: ItemStack) {
super.notifyChanged(old)
listener(item, old)
@ -160,6 +167,7 @@ open class ContainerSlot(
}
}
companion object {
private val LOGGER = LogManager.getLogger()
}

View File

@ -68,6 +68,13 @@ open class FilteredContainerSlot(
override val maxStackSize: Int
get() = this@Simple.maxStackSize
override fun maxStackSize(item: ItemStack): Int {
if (maxStackSize == Int.MAX_VALUE)
return Int.MAX_VALUE
return super.maxStackSize(item)
}
override fun notifyChanged(old: ItemStack) {
super.notifyChanged(old)
listener(item, old)