mirror of
https://github.com/Artillex-Studios/AxMinions.git
synced 2024-11-25 12:05:56 +01:00
Fix null
This commit is contained in:
parent
55072fe1c7
commit
7c0fa58832
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user