blob: 0b0089d1b7e8e239a57b61f3de7bcc67932670ab (
plain)
1
2
3
4
5
6
7
8
9
10
|
local armor_head = skycraft.armor_list["head"]
local heads = skycraft.head_list
for _, n in pairs(heads) do
for k, v in pairs(armor_head) do
if n == v then
table.remove(armor_head, k)
break
end
end
end
|