From d3bddbaba09cf8861e82ddc02326fe0989462741 Mon Sep 17 00:00:00 2001 From: Openarl Date: Sun, 20 Nov 2016 15:16:04 +1000 Subject: [PATCH] Fix for Might in All Forms --- Modules/ModParser.lua | 4 ++-- manifest.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/ModParser.lua b/Modules/ModParser.lua index 7a115992..c1b68e69 100644 --- a/Modules/ModParser.lua +++ b/Modules/ModParser.lua @@ -640,8 +640,8 @@ local jewelFuncs = { ["5% increased Chaos damage per 10 Intelligence from Allocated Passives in Radius"] = getPerStat("ChaosDamage", "INC", 0, "Int", 5 / 10), ["Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus"] = function(nodeMods, out, data) if nodeMods then - data.Dex = (data.Dex or 0) + nodeMods:Sum("BASE", 0, "Dex") - data.Int = (data.Int or 0) + nodeMods:Sum("BASE", 0, "Int") + data.Dex = (data.Dex or 0) + nodeMods:Sum("BASE", nil, "Dex") + data.Int = (data.Int or 0) + nodeMods:Sum("BASE", nil, "Int") else out:NewMod("DexIntToMeleeBonus", "BASE", data.Dex + data.Int, "Tree:Jewel") end diff --git a/manifest.xml b/manifest.xml index 6879fcd0..fb53d367 100644 --- a/manifest.xml +++ b/manifest.xml @@ -49,7 +49,7 @@ - +