From 1879f360fa41f961067466b5ce235beecea86447 Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Tue, 25 Nov 2025 00:47:12 +0100 Subject: [PATCH] (fix/BossMods): Handle unsupported DBM state in Unified This ensures proper fallback to BigWigs when DBM is not supported. So it can't fail. (cherry picked from commit 8a70954db0a57217ab28badaae1e1d025f23bb01) --- WeakAuras/BossMods.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeakAuras/BossMods.lua b/WeakAuras/BossMods.lua index 2b4e62e..9728360 100644 --- a/WeakAuras/BossMods.lua +++ b/WeakAuras/BossMods.lua @@ -1497,7 +1497,7 @@ Private.event_prototypes["BigWigs Timer"] = { Private.category_event_prototype.addons["BigWigs Timer"] = L["BigWigs Timer"] -- Unified -if BigWigsLoader or not DBM then +if BigWigsLoader or not DBM or dbmSupportStatus == dbmSupportStates.UNSUPPORTED then Private.ExecEnv.BossMods.Generic = Private.ExecEnv.BossMods.BigWigs Private.ExecEnv.BossMods.BigWigs.isGeneric = true Private.ExecEnv.BossMods.BigWigs.isInstalled = BigWigsLoader ~= nil