This commit is contained in:
TomTom 2024-06-24 15:26:20 +02:00
parent 55072fe1c7
commit 7c0fa58832

View File

@ -439,7 +439,7 @@ class Minion(
dirty = true
if (this.tool?.type == Material.AIR) {
entity.setItem(EquipmentSlot.MAIN_HAND, WrappedItemStack.wrap(ItemStack(Material.AIR)))
entity.setItem(EquipmentSlot.MAIN_HAND, null)
} else {
entity.setItem(EquipmentSlot.MAIN_HAND, WrappedItemStack.wrap(tool.clone()))
}
@ -602,7 +602,7 @@ class Minion(
override fun updateArmour() {
for (entry in EquipmentSlot.entries) {
entity.setItem(entry, WrappedItemStack.wrap(ItemStack(Material.AIR)))
entity.setItem(entry, null)
}
setTool(this.tool ?: ItemStack(Material.AIR), false)