From 4bc2958bfc81bd88ad4a877bb505103e2c3d4b8f Mon Sep 17 00:00:00 2001 From: LocalIdentity Date: Sat, 6 Jun 2026 08:17:28 +1000 Subject: [PATCH] Fix Virtuous Barrier not factoring the base 3 of each type of mote I forgot that it had a base of 3 for each mote --- src/Modules/CalcSetup.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Modules/CalcSetup.lua b/src/Modules/CalcSetup.lua index 81fe8f0b2..02c55fe4d 100644 --- a/src/Modules/CalcSetup.lua +++ b/src/Modules/CalcSetup.lua @@ -1389,7 +1389,7 @@ function calcs.initEnv(build, mode, override, specEnv) -- Merge Granted Skills Tables env.grantedSkills = tableConcat(env.grantedSkillsNodes, env.grantedSkillsItems) - local virtuousMoteSkillCount = accelerate.skills and env.virtuousMoteSkillCount or { Str = 0, Dex = 0, Int = 0 } + local virtuousMoteSkillCount = accelerate.skills and env.virtuousMoteSkillCount or { Str = 3, Dex = 3, Int = 3 } local virtuousMoteSkillCounted = { } if not accelerate.skills then