From a3c32305d8b1a54c79825013b226aa85b0806835 Mon Sep 17 00:00:00 2001 From: jopotochny Date: Wed, 4 Mar 2026 08:21:36 -0500 Subject: [PATCH] seems strange that I can't check my max hit on no crab barriers or my damage on no webs --- src/Modules/ConfigOptions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Modules/ConfigOptions.lua b/src/Modules/ConfigOptions.lua index feac95a2b0..a70262806a 100644 --- a/src/Modules/ConfigOptions.lua +++ b/src/Modules/ConfigOptions.lua @@ -265,11 +265,11 @@ return { modList:NewMod("Condition:CatsAgilityActive", "FLAG", true, "Config") end }, { label = "Aspect of the Crab:", ifSkill = "Aspect of the Crab" }, - { var = "overrideCrabBarriers", type = "count", label = "# of Crab Barriers (if not maximum):", ifSkill = "Aspect of the Crab", apply = function(val, modList, enemyModList) + { var = "overrideCrabBarriers", type = "countAllowZero", label = "# of Crab Barriers (if not maximum):", ifSkill = "Aspect of the Crab", apply = function(val, modList, enemyModList) modList:NewMod("CrabBarriers", "OVERRIDE", val, "Config", { type = "Condition", var = "Combat" }) end }, { label = "Aspect of the Spider:", ifSkill = "Aspect of the Spider" }, - { var = "aspectOfTheSpiderWebStacks", type = "count", label = "# of Spider's Web Stacks:", ifSkill = "Aspect of the Spider", apply = function(val, modList, enemyModList) + { var = "aspectOfTheSpiderWebStacks", type = "countAllowZero", label = "# of Spider's Web Stacks:", ifSkill = "Aspect of the Spider", apply = function(val, modList, enemyModList) modList:NewMod("ExtraSkillMod", "LIST", { mod = modLib.createMod("Multiplier:SpiderWebApplyStack", "BASE", val) }, "Config", { type = "SkillName", skillName = "Aspect of the Spider" }) if val > 0 then modList:NewMod("Condition:AspectOfTheSpiderActive", "FLAG", true, "Config")