From dd02a6021372a5cbe6b20ce618da58866a2e6059 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sat, 30 Oct 2010 15:12:54 +0000 Subject: [PATCH] - made castbars always register themselves for updates when shown. fixes a bug where opening the map fullscreen while casting will stop the cast bars from updating (ticket #97) --- IceCastBar.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/IceCastBar.lua b/IceCastBar.lua index e92653a..41953c6 100644 --- a/IceCastBar.lua +++ b/IceCastBar.lua @@ -400,6 +400,9 @@ function IceCastBar.prototype:GetShortRank(rank) return "" end +function IceCastBar.prototype:OnShow() + self:ConditionalSetupUpdate() +end -------------------------------------------------------------------------------