1
0
Fork 0

make mob's not switch armor lying on the ground if they are already equiped.

This commit is contained in:
epCode 2022-10-27 01:14:04 +00:00
parent 86eef8827a
commit 239eca8988
1 changed files with 2 additions and 0 deletions

View File

@ -3327,6 +3327,8 @@ local function check_item_pickup(self)
end
if not self.armor_list then
self.armor_list={helmet="",chestplate="",boots="",leggings=""}
elseif self.armor_list[armor_type] and self.armor_list[armor_type] ~= "" then
return
end
self.armor_list[armor_type]=ItemStack(l.itemstring):get_name()
o:remove()