Freehold Mythic is not showing
Mipsenx opened this issue ยท 6 comments
Thanks for your report, currently looking into it.
I changed how the addon assigns flags to EJ tiles in v1.2.0, in a way that it shouldn't need locales anymore and should work on all clients. I'll see on my side if it's working, so I'll know if that's a client issue or not. If not I'll start debugging. If it's related to the client, I'll need more info from you.
I found the issue. When you iterate over your instanceData array to replace the instanceID then the Freehold ID get replaced from 1754 to 1001 and then again via Scarlet Halls from 1001 to 311. Changing
for k, v in pairs(instancesData) do
if instanceID == k then
instanceID = v
end
end
to
for k, v in pairs(instancesData) do
if instanceID == k then
instanceID = v
break
end
end
fixed the issue for me.
Yes, I noticed it, didn't know how to fix it though, I just woke up. But I found a better way to do it.
Thanks for your contribution.
Fixed in 44b10c8.