Skip to content

Commit

Permalink
from retail
Browse files Browse the repository at this point in the history
  • Loading branch information
Bunny67 committed Dec 30, 2020
1 parent e7c46c8 commit 7179274
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions WeakAuras/AuraEnvironment.lua
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ local blockedFunctions = {

local blockedTables = {
SlashCmdList = true,
SendMailMailButton = true,
SendMailMoneyGold = true,
MailFrameTab2 = true,
}

local aura_environments = {}
Expand Down
7 changes: 5 additions & 2 deletions WeakAuras/GenericTrigger.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3399,10 +3399,13 @@ function GenericTrigger.SetToolTip(trigger, state)
GameTooltip:SetHyperlink("item:"..state.itemId..":0:0:0:0:0:0:0");
return true
elseif (state.unit and state.unitBuffIndex) then
GameTooltip:SetUnitBuff(state.unit, state.unitBuffIndex);
GameTooltip:SetUnitBuff(state.unit, state.unitBuffIndex, state.unitBuffFilter);
return true
elseif (state.unit and state.unitDebuffIndex) then
GameTooltip:SetUnitDebuff(state.unit, state.unitDebuffIndex);
GameTooltip:SetUnitDebuff(state.unit, state.unitDebuffIndex, state.unitDebuffFilter);
return true
elseif (state.unit and state.unitAuraIndex) then
GameTooltip:SetUnitAura(state.unit, state.unitAuraIndex, state.unitAuraFilter)
return true
end
end
Expand Down
2 changes: 1 addition & 1 deletion WeakAuras/Init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WeakAuras.halfWidth = WeakAuras.normalWidth / 2
WeakAuras.doubleWidth = WeakAuras.normalWidth * 2

local versionStringFromToc = GetAddOnMetadata("WeakAuras", "Version")
local versionString = "3.1.4"
local versionString = "3.1.5"
local buildTime = "20201210233053"

WeakAuras.versionString = versionStringFromToc
Expand Down
2 changes: 1 addition & 1 deletion WeakAuras/WeakAuras.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 30300
## Title: WeakAuras
## Author: The WeakAuras Team
## Version: 3.1.4
## Version: 3.1.5
## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers.
## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores.
## Notes-deDE: Ein leistungsfähiges, umfassendes Addon zur grafischen Darstellung von Informationen von Auren, Cooldowns, Timern und vielem mehr.
Expand Down
2 changes: 1 addition & 1 deletion WeakAurasOptions/WeakAurasOptions.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 30300
## Title: WeakAuras Options
## Author: The WeakAuras Team
## Version: 3.1.4
## Version: 3.1.5
## Notes: Options for WeakAuras
## Notes-esES: Opciones para WeakAuras
## Notes-deDE: Optionen für WeakAuras
Expand Down

0 comments on commit 7179274

Please sign in to comment.