Skip to content

Commit d7e6435

Browse files
author
LocalIdentity
committed
Release 2.40.1
--- Fixed Bugs --- * Fix Archmage added Mana cost not scaling correctly (LocalIdentity)
1 parent 35dae7c commit d7e6435

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [v2.40.1](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.40.1) (2024/03/24)
4+
5+
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.40.0...v2.40.1)
6+
7+
<!-- Release notes generated using configuration in .github/release.yml at dev -->
8+
9+
## What's Changed
10+
### Fixed Bugs
11+
- Fix Archmage added Mana cost not scaling correctly ([LocalIdentity](https://github.com/LocalIdentity))
12+
13+
14+
315
## [v2.40.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.40.0) (2024/03/24)
416

517
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.39.3...v2.40.0)

changelog.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1+
VERSION[2.40.1][2024/03/24]
2+
3+
--- Fixed Bugs ---
4+
* Fix Archmage added Mana cost not scaling correctly (LocalIdentity)
5+
16
VERSION[2.40.0][2024/03/24]
27

38
--- New to Path of Building ---
49
* Overhaul graphics engine to v2.0 (Zao)
510
* Should have a noticeable increase in performance and fix many obscure crashes
611
* 3.24 Changes:
712
* Add 3.24 Trees by (Regisle)
8-
* Add support for new 3.24 Uniques by (learn2draw, LocalIdentity)
9-
* Update existing uniques from 3.24 patch notes by (learn2draw, LocalIdentity)
13+
* Add support for new 3.24 Uniques by (Lexy, LocalIdentity)
14+
* Update existing uniques from 3.24 patch notes by (Lexy, LocalIdentity)
1015
* Update existing skill gems from 3.24 patch notes by (Wires77, LocalIdentity)
1116
* Update Tattoos, Flasks and item mods with 3.24 changes by (LocalIdentity)
1217
* Add a config option for disabling Champion Intimidate effect (Paliak)

manifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version='1.0' encoding='UTF-8'?>
22
<PoBVersion>
3-
<Version number="2.40.0" />
3+
<Version number="2.40.1" />
44
<Source part="default" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/" />
55
<Source part="runtime" platform="win32" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/runtime/" />
66
<Source part="program" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/src/" />
77
<Source part="tree" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/src/" />
8-
<File name="changelog.txt" part="default" sha1="2fdb17d3313029be58fe07e1bd6c1f36751987fd" />
8+
<File name="changelog.txt" part="default" sha1="1d59fad9257e423d845a5a99c7290bb8c3bc56fb" />
99
<File name="help.txt" part="default" sha1="3343967a2d5f374228fd217a7a3f9612ee046bde" />
1010
<File name="LICENSE.md" part="default" sha1="eacedd00e9707defe051bd7151466d223376afa6" />
1111
<File name="Assets/game_ui_small.png" part="program" sha1="3e3f01a7c21ffe5ee7dfb644e9f3b7188c319d4d" />
@@ -151,7 +151,7 @@
151151
<File name="Data/Skills/other.lua" part="program" sha1="5a5d36e4683f6dcdc004b19124e10d496cc466e9" />
152152
<File name="Data/Skills/spectre.lua" part="program" sha1="afb9f98e1cfd035279291e99fa328ca9e882490a" />
153153
<File name="Data/Skills/sup_dex.lua" part="program" sha1="5bdfa4ff05ed27b2fd45d29ba3b9af38a74fedef" />
154-
<File name="Data/Skills/sup_int.lua" part="program" sha1="506b256763e9ee18dfb2a87cf85b1b9f215b7639" />
154+
<File name="Data/Skills/sup_int.lua" part="program" sha1="b4f292a12b1b7f64ac91d71f1005c27763d09df9" />
155155
<File name="Data/Skills/sup_str.lua" part="program" sha1="adbae2d48a5b2e348fbd1452620337d882c976ab" />
156156
<File name="Data/SkillStatMap.lua" part="program" sha1="8349018f0e844d1f0e97fdeb6f4ba8c87f1759e7" />
157157
<File name="Data/Spectres.lua" part="program" sha1="bafe6f48ecbc005eae16bc0d1552a1af9eba2d44" />

src/Data/Skills/sup_int.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ skills["SupportArchmage"] = {
313313
statDescriptionScope = "gem_stat_descriptions",
314314
statMap = {
315315
["manaweave_cost_equals_%_unreserved_mana"] = {
316-
mod("ManaCost", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }),
316+
mod("ManaCostBase", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }),
317317
},
318318
["manaweave_added_lightning_damage_%_cost_if_payable"] = {
319319
mod("LightningMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }),

src/Export/Skills/sup_int.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ local skills, mod, flag, skill = ...
3434
#skill SupportArchmage
3535
statMap = {
3636
["manaweave_cost_equals_%_unreserved_mana"] = {
37-
mod("ManaCost", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }),
37+
mod("ManaCostBase", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }),
3838
},
3939
["manaweave_added_lightning_damage_%_cost_if_payable"] = {
4040
mod("LightningMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "ManaUnreserved" , percent = 1 }),

0 commit comments

Comments
 (0)