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

Loading…
Cancel
Save