Fix player not getting advancements for items picked up into exopack inventory

This commit is contained in:
DBotThePony 2025-03-29 17:06:01 +07:00
parent f82c7977fa
commit f57ccafcfa
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -1,10 +1,13 @@
package ru.dbotthepony.mc.otm.player
import net.minecraft.server.level.ServerPlayer
import net.minecraft.world.item.Item
import net.minecraft.world.item.ItemStack
import ru.dbotthepony.mc.otm.container.EnhancedContainer
import ru.dbotthepony.mc.otm.container.IContainerSlot
import ru.dbotthepony.mc.otm.container.IEnhancedContainer
import ru.dbotthepony.mc.otm.container.ItemFilter
import ru.dbotthepony.mc.otm.triggers.MatteryInventoryChangeTrigger
class ExopackContainer(size: Int, val player: MatteryPlayer) : EnhancedContainer<IPlayerInventorySlot>(size) {
private inner class Slot(slot: Int) : IContainerSlot.Simple(slot, this@ExopackContainer), IPlayerInventorySlot {
@ -17,6 +20,13 @@ class ExopackContainer(size: Int, val player: MatteryPlayer) : EnhancedContainer
set(value) { if (value.allowAll) player.slotFilters.remove(PlayerInventoryWrapper.SLOTS + slot) else player.slotFilters[PlayerInventoryWrapper.SLOTS + slot] = value }
}
override fun notifySlotChanged(slot: Int, old: ItemStack) {
super.notifySlotChanged(slot, old)
if (player.ply is ServerPlayer)
MatteryInventoryChangeTrigger.trigger(player.ply, this, this[slot])
}
override fun containerSlot(slot: Int): IPlayerInventorySlot {
return Slot(slot)
}