]> git.lizzy.rs Git - skycraft.git/blob - src/onload/remove_heads_from_armor.lua
Daily Enhancements
[skycraft.git] / src / onload / remove_heads_from_armor.lua
1 local armor_head = skycraft.armor_list["head"]
2 local heads = skycraft.head_list
3 for _, n in pairs(heads) do
4         for k, v in pairs(armor_head) do
5                 if n == v then
6                         table.remove(armor_head, k)
7                         break
8                 end
9         end
10 end