From 727e65dbdf1daed29e13d0c97f45b7e04d819546 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sat, 18 Jul 2009 04:47:47 +0000 Subject: [PATCH] - fixed the "hide blizzard buff frame" checkbox not hiding temporary enchants (weapon buffs) --- modules/PlayerInfo.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/PlayerInfo.lua b/modules/PlayerInfo.lua index e10322c..f20c2c7 100644 --- a/modules/PlayerInfo.lua +++ b/modules/PlayerInfo.lua @@ -86,6 +86,7 @@ end function PlayerInfo.prototype:ShowBlizz() BuffFrame:Show() + TemporaryEnchantFrame:Show() BuffFrame:RegisterEvent("UNIT_AURA"); end @@ -93,6 +94,7 @@ end function PlayerInfo.prototype:HideBlizz() BuffFrame:Hide() + TemporaryEnchantFrame:Hide() BuffFrame:UnregisterAllEvents() end