Adventure Guide Lockouts

Adventure Guide Lockouts

366k Downloads

Freehold Mythic is not showing

Mipsenx opened this issue ยท 6 comments

commented

Freehold Mythic is not showing, not sure if its because i also did one on m+
Was Alliance EU
2018-09-15
2018-09-15 1

commented

Same issue here, Freehold does not show up. In 1.1.9 it did.

commented

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.

commented

Seems like it's not a client issue. I'll need some time to figure it out.

commented

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.

commented

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.

commented

Fixed in 44b10c8.