From d7e6435a2345280951cd6e90ce8c0c3428f72422 Mon Sep 17 00:00:00 2001 From: LocalIdentity Date: Sun, 24 Mar 2024 11:01:55 +1100 Subject: [PATCH] Release 2.40.1 --- Fixed Bugs --- * Fix Archmage added Mana cost not scaling correctly (LocalIdentity) --- CHANGELOG.md | 12 ++++++++++++ changelog.txt | 9 +++++++-- manifest.xml | 6 +++--- src/Data/Skills/sup_int.lua | 2 +- src/Export/Skills/sup_int.txt | 2 +- 5 files changed, 24 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5430b50cfc..b4a1a46e59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [v2.40.1](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.40.1) (2024/03/24) + +[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.40.0...v2.40.1) + + + +## What's Changed +### Fixed Bugs +- Fix Archmage added Mana cost not scaling correctly ([LocalIdentity](https://github.com/LocalIdentity)) + + + ## [v2.40.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.40.0) (2024/03/24) [Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.39.3...v2.40.0) diff --git a/changelog.txt b/changelog.txt index 347bf421e7..550153a5a2 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +VERSION[2.40.1][2024/03/24] + +--- Fixed Bugs --- +* Fix Archmage added Mana cost not scaling correctly (LocalIdentity) + VERSION[2.40.0][2024/03/24] --- New to Path of Building --- @@ -5,8 +10,8 @@ VERSION[2.40.0][2024/03/24] * Should have a noticeable increase in performance and fix many obscure crashes * 3.24 Changes: * Add 3.24 Trees by (Regisle) - * Add support for new 3.24 Uniques by (learn2draw, LocalIdentity) - * Update existing uniques from 3.24 patch notes by (learn2draw, LocalIdentity) + * Add support for new 3.24 Uniques by (Lexy, LocalIdentity) + * Update existing uniques from 3.24 patch notes by (Lexy, LocalIdentity) * Update existing skill gems from 3.24 patch notes by (Wires77, LocalIdentity) * Update Tattoos, Flasks and item mods with 3.24 changes by (LocalIdentity) * Add a config option for disabling Champion Intimidate effect (Paliak) diff --git a/manifest.xml b/manifest.xml index 372bfe3a1f..120cf72c62 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,11 +1,11 @@ - + - + @@ -151,7 +151,7 @@ - + diff --git a/src/Data/Skills/sup_int.lua b/src/Data/Skills/sup_int.lua index e5c29af26a..5da091b70f 100644 --- a/src/Data/Skills/sup_int.lua +++ b/src/Data/Skills/sup_int.lua @@ -313,7 +313,7 @@ skills["SupportArchmage"] = { statDescriptionScope = "gem_stat_descriptions", statMap = { ["manaweave_cost_equals_%_unreserved_mana"] = { - mod("ManaCost", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }), + mod("ManaCostBase", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }), }, ["manaweave_added_lightning_damage_%_cost_if_payable"] = { mod("LightningMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }), diff --git a/src/Export/Skills/sup_int.txt b/src/Export/Skills/sup_int.txt index dc8215dcac..150036099f 100644 --- a/src/Export/Skills/sup_int.txt +++ b/src/Export/Skills/sup_int.txt @@ -34,7 +34,7 @@ local skills, mod, flag, skill = ... #skill SupportArchmage statMap = { ["manaweave_cost_equals_%_unreserved_mana"] = { - mod("ManaCost", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }), + mod("ManaCostBase", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }), }, ["manaweave_added_lightning_damage_%_cost_if_payable"] = { mod("LightningMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }),