diff --git a/Data/Gems/act_dex.lua b/Data/Gems/act_dex.lua index 6f192956..75cbc80c 100644 --- a/Data/Gems/act_dex.lua +++ b/Data/Gems/act_dex.lua @@ -223,7 +223,7 @@ gems["Blade Flurry"] = { mod("Speed", "MORE", 65, ModFlag.Attack), --"active_skill_attack_speed_+%_final" = 65 --"charged_attack_damage_per_stack_+%_final" = 20 --"is_area_damage" = ? - skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? + nil, --"base_skill_show_average_damage_instead_of_dps" = ? --"skill_can_add_multiple_charges_per_action" = ? mod("Damage", "MORE", 20, ModFlag.Attack, 0, { type = "SkillPart", skillPart = 1 }), mod("Damage", "MORE", 120, ModFlag.Attack, 0, { type = "SkillPart", skillPart = 2 }), diff --git a/Modules/Calcs.lua b/Modules/Calcs.lua index d30fd944..356aab1d 100644 --- a/Modules/Calcs.lua +++ b/Modules/Calcs.lua @@ -671,9 +671,9 @@ local function mergeMainMods(env, repSlotName, repItem) local func = item.jewelFunc or function(nodeMods, out, data) -- Default function just tallies all stats in radius if nodeMods then - data.strBase = (data.strBase or 0) + (nodeMods.strBase or 0) - data.dexBase = (data.dexBase or 0) + (nodeMods.dexBase or 0) - data.intBase = (data.intBase or 0) + (nodeMods.intBase or 0) + for _, stat in pairs({"Str","Dex","Int"}) do + data[stat] = (data[stat] or 0) + nodeMods:Sum("BASE", nil, stat) + end end end local radiusInfo = data.jewelRadius[item.jewelRadiusIndex] diff --git a/README.md b/README.md index 72be7e9e..c4ba8faa 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,10 @@ Head over to the [Releases](https://github.com/Openarl/PathOfBuilding/releases) ![ss3](https://cloud.githubusercontent.com/assets/19189971/18089780/f0ff234a-6f04-11e6-8c88-6193fe59a5c4.png) ## Changelog +### 1.2.9 - 2016/11/20 + * Blade Flurry now shows DPS instead of average damage + * Fixed stat counts not showing for some radius jewels + ### 1.2.8 - 2016/11/20 * Fixed dodge not being capped at 75% * Fixed missing area damage flag on Ancestral Warchief diff --git a/changelog.txt b/changelog.txt index 94fcbaae..5b7bab1a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +VERSION[1.2.9][2016/11/20] + * Blade Flurry now shows DPS instead of average damage + * Fixed stat counts not showing for some radius jewels VERSION[1.2.8][2016/11/20] * Fixed dodge not being capped at 75% * Fixed missing area damage flag on Ancestral Warchief diff --git a/manifest.xml b/manifest.xml index e060f0b8..6879fcd0 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,13 +1,13 @@ - + - + @@ -43,7 +43,7 @@ - + @@ -55,7 +55,7 @@ - +