View Bug Report
World marker ("flare") setting for raid assist not saved
Bug #: 8762
File: wMarker
Date: 02-13-18 02:09 PM
By: KyrosKrane
Status: Unconfirmed
In line 565 of the file config.lua, you have this:

local worldAssist = checkNew(world,L["Hide without assist (in a raid)"],function() wFlares.assistShow = not wFlaresDB.assistShow; wMarker:visibility() end)


There is a typo here. You have wFlares instead of wFlaresDB. Here's the corrected line, change highlighted in red:

local worldAssist = checkNew(world,L["Hide without assist (in a raid)"],function() wFlaresDB.assistShow = not wFlaresDB.assistShow; wMarker:visibility() end)

Thanks.

RSS 2.0 Feed for Bug CommentsNotes Sort Options
By: KyrosKrane - 02-13-18 02:10 PM
Sorry, submitted twice by mistake.