many Lua errors
TrinooLive opened this issue ยท 3 comments
3257x ...ddOns/Questie/Modules/FramePool/QuestieFramePool.lua:216: Wrong object type for function
[string "=[C]"]: in function CreateFrame' [string "@Questie/Modules/FramePool/QuestieFramePool.lua"]:216: in function
CreateLine'
[string "@Questie/Modules/FramePool/QuestieFramePool.lua"]:186: in function CreateWaypoints' [string "@Questie/Modules/Map/QuestieMap.lua"]:961: in function
DrawWaypoints'
[string "@Questie/Modules/Map/QuestieMap.lua"]:400: in function `ShowNPC'
[string "@Questie/Modules/QuestieMenu.lua"]:116: in function <Questie/Modules/QuestieMenu.lua:109>
Locals:
(*temporary) = "Button"
(*temporary) = "questieLineFrame6"
(*temporary) =
1 = 62.298289
2 = 17.286064
}
Screenshots
Questie & WoW version
Questie v9.2.0
WoW Classic SOD
@TrinooLive Disabling vendors from the minimap button should do as a workaround until we have a proper fix.
@TrinooLive i got it to work by going to Questie\Modules\Map\QuestieMap.lua
and deleting line 398 that says manualIcons[zone] = { waypoints[1][1][1], waypoints[1][1][2] }
@Muehe it looks like that line was added in error because you assign to manualIcons[zone]
in the line right above it
if not manualIcons[zone] then
manualIcons[zone] = QuestieMap:DrawManualIcon(data, zone, waypoints[1][1][1], waypoints[1][1][2])
manualIcons[zone] = { waypoints[1][1][1], waypoints[1][1][2] } -- you're throwing away the results of the prior function call
end