From 7158c0d367ed7d1529906f68cff494273b6b8b9e Mon Sep 17 00:00:00 2001 From: GreenComfyTea Date: Wed, 1 Mar 2023 16:59:24 +0200 Subject: [PATCH] Uncomment Poison and Stun Ailment Buildup UIs --- .../autorun/MHR_Overlay/Monsters/ailment_buildup.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reframework/autorun/MHR_Overlay/Monsters/ailment_buildup.lua b/reframework/autorun/MHR_Overlay/Monsters/ailment_buildup.lua index 32b1965..59b6ba4 100644 --- a/reframework/autorun/MHR_Overlay/Monsters/ailment_buildup.lua +++ b/reframework/autorun/MHR_Overlay/Monsters/ailment_buildup.lua @@ -53,14 +53,14 @@ function ailment_buildup.draw(monster, ailment_buildup_UI, cached_config, ailmen for id, ailment in pairs(monster.ailments) do if id == ailments.stun_id then - --if not cached_config.filter.stun then + if not cached_config.filter.stun then goto continue - --end + end elseif id == ailments.poison_id then - --if not cached_config.filter.poison then + if not cached_config.filter.poison then goto continue - --end + end elseif id == ailments.blast_id then if not cached_config.filter.blast then goto continue