@@ -3181,7 +3181,7 @@ function BuffTrigger.Add(data)
31813181
31823182 local groupTrigger = trigger .unit == " group" or trigger .unit == " raid" or trigger .unit == " party"
31833183 local effectiveIgnoreSelf = (groupTrigger or trigger .unit == " nameplate" ) and trigger .ignoreSelf
3184- local effectiveGroupRole = WeakAuras . IsWrathOrCataOrMistsOrRetail () and ( groupTrigger and trigger .useGroupRole and trigger .group_role ) or nil
3184+ local effectiveGroupRole = groupTrigger and trigger .useGroupRole and trigger .group_role or nil
31853185 local effectiveRaidRole = WeakAuras .IsClassicOrTBCOrWrathOrCataOrMists () and (groupTrigger and trigger .useRaidRole and trigger .raid_role ) or nil
31863186 local effectiveClass = groupTrigger and trigger .useClass and trigger .class
31873187 local effectiveSpecId = WeakAuras .IsCataOrMistsOrRetail () and (groupTrigger and trigger .useActualSpec and trigger .actualSpec ) or nil
@@ -3241,7 +3241,7 @@ function BuffTrigger.Add(data)
32413241 compareFunc = matchCombineFunctions [trigger .combineMode ] or matchCombineFunctions [" showLowest" ],
32423242 unitExists = showIfInvalidUnit ,
32433243 fetchTooltip = not IsSingleMissing (trigger ) and trigger .unit ~= " multi" and trigger .fetchTooltip ,
3244- fetchRole = WeakAuras . IsCataOrMistsOrRetail () and trigger .unit ~= " multi" and trigger .fetchRole ,
3244+ fetchRole = trigger .unit ~= " multi" and trigger .fetchRole ,
32453245 fetchRaidMark = trigger .unit ~= " multi" and trigger .fetchRaidMark ,
32463246 groupTrigger = IsGroupTrigger (trigger ),
32473247 ignoreSelf = effectiveIgnoreSelf ,
@@ -3424,7 +3424,7 @@ function BuffTrigger.GetAdditionalProperties(data, triggernum)
34243424 props [" refreshTime" ] = { display = L [" Since Apply/Refresh" ], formatter = " timed" }
34253425 end
34263426
3427- if WeakAuras . IsCataOrMistsOrRetail () and trigger .unit ~= " multi" and trigger .fetchRole then
3427+ if trigger .unit ~= " multi" and trigger .fetchRole then
34283428 props [" role" ] = { display = L [" Assigned Role" ] }
34293429 props [" roleIcon" ] = { display = L [" Assigned Role Icon" ] }
34303430 end
0 commit comments