Skip to content

Commit 28b2fa1

Browse files
LocalIdentityLocalIdentity
andauthored
Fix Virtuous Barrier not factoring the base 3 of each type of mote (#2103)
I forgot that it had a base of 3 for each mote Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent ee0e4b7 commit 28b2fa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Modules/CalcSetup.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,7 @@ function calcs.initEnv(build, mode, override, specEnv)
13891389
-- Merge Granted Skills Tables
13901390
env.grantedSkills = tableConcat(env.grantedSkillsNodes, env.grantedSkillsItems)
13911391

1392-
local virtuousMoteSkillCount = accelerate.skills and env.virtuousMoteSkillCount or { Str = 0, Dex = 0, Int = 0 }
1392+
local virtuousMoteSkillCount = accelerate.skills and env.virtuousMoteSkillCount or { Str = 3, Dex = 3, Int = 3 }
13931393
local virtuousMoteSkillCounted = { }
13941394

13951395
if not accelerate.skills then

0 commit comments

Comments
 (0)