Merge branch '1.21' into new-container-api

This commit is contained in:
DBotThePony 2025-02-27 19:41:42 +07:00
commit b39c82e79a
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -325,6 +325,10 @@ class MatteryPlayer(val ply: Player) {
override fun setChanged(slot: Int) {
ply.inventory.setChanged()
}
override fun clearSlotFilters() {
regularSlotFilters.forEach { it.accept(null) }
}
}
val wrappedItemInventory: IMatteryContainer = object : IMatteryContainer by wrappedInventory {