This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Line 508, in the first line of the SortLocation function, could you replace
if (a.itemEquipLoc == "" or b.itemEquipLoc == "" or a.itemEquipLoc == b.itemEquipLoc) then
with
if (a.itemEquipLoc == "" or b.itemEquipLoc == "" or armWepRank[a.itemEquipLoc] == armWepRank[b.itemEquipLoc]) then
And see if it helps?
This code change fixed my chest loop issue.
Could you check that the latest version works for you?
To post a comment, please login or register a new account.