Skip to content

Commit

Permalink
Fix typo in new debuff filtering option.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tojaso committed Apr 23, 2021
1 parent 3952919 commit 647acd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Raven_Options/Options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7164,8 +7164,8 @@ MOD.OptionsTable = {
YourBuffNotTarget = {
type = "toggle", order = 35, name = L["Other, Not Target"],
desc = L["If checked, only add bars for debuffs if cast by anyone other than player, pet or target."],
get = function(info) return GetBarGroupField("detectBuffsCastBy") == "nother" end,
set = function(info, value) SetBarGroupField("detectBuffsCastBy", "nother") end,
get = function(info) return GetBarGroupField("detectDebuffsCastBy") == "nother" end,
set = function(info, value) SetBarGroupField("detectDebuffsCastBy", "nother") end,
},
AnyBuff = {
type = "toggle", order = 40, name = L["Anyone"],
Expand Down

0 comments on commit 647acd4

Please sign in to comment.