From 32656f7e07464675db70d8ec220e6f00a112f93c Mon Sep 17 00:00:00 2001 From: KyrosKrane Date: Thu, 24 May 2018 21:22:37 -0500 Subject: [PATCH] Refresh the count of players by role when an anomaly is detected (usually due to players zoning slowly) --- Broker_RaidMakeup.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Broker_RaidMakeup.lua b/Broker_RaidMakeup.lua index 187fee7..44593c7 100644 --- a/Broker_RaidMakeup.lua +++ b/Broker_RaidMakeup.lua @@ -314,6 +314,9 @@ function BRM.LDO:OnClick(...) BRM:DebugPrint("old_TotalCount is " .. (old_TotalCount or "nil") .. ", new TotalCount is " .. (BRM.TotalCount or "nil")) -- @TODO: Capture some info and give the player a way to report it. + + -- Also schedule an update in five seconds to ensure we capture any additional changes + C_Timer.After(5, function() BRM:UpdateComposition() end) end end -- BRM.LDO:OnClick() -- 1.7.9.5