From b9ecca7bf5f641fbfec23fee8ba8f8b8c3613f54 Mon Sep 17 00:00:00 2001 From: NoM0Re Date: Thu, 20 Feb 2025 10:04:10 +0100 Subject: [PATCH] (fix/BossMods) fix older DBM.Revision used String causing lua error --- WeakAuras/BossMods.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeakAuras/BossMods.lua b/WeakAuras/BossMods.lua index 57a273a..c764274 100644 --- a/WeakAuras/BossMods.lua +++ b/WeakAuras/BossMods.lua @@ -1711,7 +1711,7 @@ Private.category_event_prototype.addons["Boss Mod Timer"] = L["Boss Mod Timer"] -- References: -- Commit: https://github.com/Zidras/DBM-Warmane/commit/5791dac460a07225c5d617d0252a88ce1e210618 -- Download: https://github.com/Zidras/DBM-Warmane/archive/refs/heads/main.zip -if not (DBM and DBM.Revision >= 20250209000000) then +if not (DBM and type(DBM.Revision) == "number" and DBM.Revision >= 20250209000000) then local dbm_trigger = { "DBM Stage", "DBM Announce",