From 594ea0a3e3d1d3d83a6e85b7c6e87698406e1cad Mon Sep 17 00:00:00 2001 From: Parnic Date: Sat, 1 Apr 2023 20:53:53 -0500 Subject: [PATCH] Fix errors when toggling off Hide Blizz --- changelog.md | 1 + modules/PlayerInfo.lua | 3 +++ 2 files changed, 4 insertions(+) diff --git a/changelog.md b/changelog.md index ace9b8c..3160fb2 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,7 @@ v1.14.18: - Fixed Runic Power showing on a scale of 0-1000+ instead of 0-100+ with DogTags off - Added option (enabled by default) to hide mod during cataloging. +- Fixed "Hide Blizzard Buffs" option on PlayerInfo causing errors and "?" icons when toggling off. v1.14.17: diff --git a/modules/PlayerInfo.lua b/modules/PlayerInfo.lua index d3831f7..6d91db7 100644 --- a/modules/PlayerInfo.lua +++ b/modules/PlayerInfo.lua @@ -120,6 +120,9 @@ function PlayerInfo.prototype:ShowBlizz() end BuffFrame:GetScript("OnLoad")(BuffFrame) + if BuffFrame.Update then + BuffFrame:Update() + end end