
[BUG] Errors with pin.areaPoiID being nil
yoshimo opened this issue ยท 2 comments
Describe the bug
The game throws lua errors when i open the map in Dragon Isles
More infos (please complete the following information):
- Version : v2.22.0
- Client : XPTR 11.1
Additional context
i changed the code in core/handler.lua to
for pin in WorldMapFrame:EnumeratePinsByTemplate("AreaPOIPinTemplate") do
for _, poiID in ipairs(areaPoisToRemove) do
if pin.areaPoiID ~= nil then
local poi = C_AreaPoiInfo.GetAreaPOIInfo(WorldMapFrame:GetMapID(), pin.areaPoiID)
if (poi ~= nil and poi.areaPoiID == poiID) then
WorldMapFrame:RemovePin(pin)
addon:debugmsg("removed AreaPoi "..poiID.." "..poi.name)
end
end
end
end
end
To make the annoying lua error on area change go away. GetMapID was 2025 when it happened.
Hey, I played this weekend also on the PTR and saw this.
This comes from changes to the AreaPOIDataProvider.lua in patch 11.1.
It will be fixed if this patch hits the live servers.
If you want to fix this right now for the PTR version of this addon you need to change pin.areaPoiID
to pin.poiInfo.areaPoiID
.
local function RemoveAreaPOIs()
if (not ns.db.remove_AreaPois) then return end
for pin in WorldMapFrame:EnumeratePinsByTemplate("AreaPOIPinTemplate") do
for _, poiID in ipairs(areaPoisToRemove) do
local poi = C_AreaPoiInfo.GetAreaPOIInfo(WorldMapFrame:GetMapID(), pin.poiInfo.areaPoiID)
if (poi ~= nil and poi.areaPoiID == poiID) then
WorldMapFrame:RemovePin(pin)
addon:debugmsg("removed AreaPoi "..poiID.." "..poi.name)
end
end
end
end
I changed this in commit 70474f3 and I just released v2.23.0.
This is now compatible with 11.0.7 and 11.1.0.