Passing Int.MAX_VALUE to simple container slot factory will make its slots ignore max stack size completely
This commit is contained in:
parent
f5e21f5582
commit
571c7bc339
@ -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()
|
||||
}
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user