Browse Source

addons/libs/ffxi/enums.lua EquipmentSlots

EquipmentSlots.Neck (slot 9) was missing, additionally all slots using the enums after that were offset by -1
pull/45/head
matix 6 years ago
parent
commit
fd8c286d58
  1. 13
      addons/libs/ffxi/enums.lua

13
addons/libs/ffxi/enums.lua

@ -129,12 +129,13 @@ EquipmentSlots =
Hands = 6, Hands = 6,
Legs = 7, Legs = 7,
Feet = 8, Feet = 8,
Waist = 9, Neck = 9,
Ear1 = 10, Waist = 10,
Ear2 = 11, Ear1 = 11,
Ring1 = 12, Ear2 = 12,
Ring2 = 13, Ring1 = 13,
Back = 14, Ring2 = 14,
Back = 15,
}; };
ElementColor = ElementColor =

Loading…
Cancel
Save