Skip to content

Commit

Permalink
Fix tooltips of specific unit
Browse files Browse the repository at this point in the history
Bufftrigger 2 claimed that it supported names, and Bufftrigger 1 didn't.
That's the reverse of the actual situation.

Github-Issue: #982
  • Loading branch information
InfusOnWoW authored and Stanzilla committed Nov 26, 2018
1 parent b9d81b5 commit dd56906
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WeakAurasOptions/BuffTrigger.lua
Expand Up @@ -806,7 +806,7 @@ local function GetBuffTriggerOptions(data, optionTriggerChoices)
width = WeakAuras.normalWidth,
name = L["Specific Unit"],
order = 43,
desc = L["A Unit ID (e.g., party1)."],
desc = L["Can be a Name or a Unit ID (e.g. party1). A name only works on friendly players in your group."],
hidden = function() return not (trigger.type == "aura" and trigger.unit == "member") end
},
useGroup_count = {
Expand Down
2 changes: 1 addition & 1 deletion WeakAurasOptions/BuffTrigger2.lua
Expand Up @@ -107,7 +107,7 @@ local function GetBuffTriggerOptions(data, optionTriggerChoices)
width = WeakAuras.normalWidth,
name = L["Specific Unit"],
order = 10.3,
desc = L["Can be a Name or a Unit ID (e.g. party1). A name only works on friendly players in your group."],
desc = L["A Unit ID (e.g., party1)."],
hidden = function() return not (trigger.type == "aura2" and trigger.unit == "member") end
},
useDebuffType = {
Expand Down

0 comments on commit dd56906

Please sign in to comment.