From 67e2dfe60e8372ef0a73db9439faa1b2dd3dab20 Mon Sep 17 00:00:00 2001 From: Zidras <10605951+Zidras@users.noreply.github.com> Date: Wed, 9 Jun 2021 20:34:44 +0100 Subject: [PATCH] Slight change to DBM revision check logic Without DBM, this wouldn't be hidden. Follow-up to commit: https://github.com/Bunny67/WeakAuras-WotLK/commit/31ad61fe5fc501a5896878bbcaafcd37316b04d4 --- WeakAuras/Prototypes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index effec61..69e3f75 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -6059,7 +6059,7 @@ Private.event_prototypes = { }; -if (DBM and tonumber(DBM.Revision) < 7003) then +if not (DBM and tonumber(DBM.Revision) >= 7003) then Private.event_prototypes["DBM Announce"] = nil Private.event_prototypes["DBM Timer"] = nil end