Skip to content

Commit

Permalink
Release 2.40.1
Browse files Browse the repository at this point in the history
--- Fixed Bugs ---
* Fix Archmage added Mana cost not scaling correctly (LocalIdentity)
  • Loading branch information
LocalIdentity committed Mar 24, 2024
1 parent 35dae7c commit d7e6435
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

<!-- Release notes generated using configuration in .github/release.yml at dev -->

## 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)
Expand Down
9 changes: 7 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
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 ---
* Overhaul graphics engine to v2.0 (Zao)
* 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)
Expand Down
6 changes: 3 additions & 3 deletions manifest.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<PoBVersion>
<Version number="2.40.0" />
<Version number="2.40.1" />
<Source part="default" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/" />
<Source part="runtime" platform="win32" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/runtime/" />
<Source part="program" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/src/" />
<Source part="tree" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/src/" />
<File name="changelog.txt" part="default" sha1="2fdb17d3313029be58fe07e1bd6c1f36751987fd" />
<File name="changelog.txt" part="default" sha1="1d59fad9257e423d845a5a99c7290bb8c3bc56fb" />
<File name="help.txt" part="default" sha1="3343967a2d5f374228fd217a7a3f9612ee046bde" />
<File name="LICENSE.md" part="default" sha1="eacedd00e9707defe051bd7151466d223376afa6" />
<File name="Assets/game_ui_small.png" part="program" sha1="3e3f01a7c21ffe5ee7dfb644e9f3b7188c319d4d" />
Expand Down Expand Up @@ -151,7 +151,7 @@
<File name="Data/Skills/other.lua" part="program" sha1="5a5d36e4683f6dcdc004b19124e10d496cc466e9" />
<File name="Data/Skills/spectre.lua" part="program" sha1="afb9f98e1cfd035279291e99fa328ca9e882490a" />
<File name="Data/Skills/sup_dex.lua" part="program" sha1="5bdfa4ff05ed27b2fd45d29ba3b9af38a74fedef" />
<File name="Data/Skills/sup_int.lua" part="program" sha1="506b256763e9ee18dfb2a87cf85b1b9f215b7639" />
<File name="Data/Skills/sup_int.lua" part="program" sha1="b4f292a12b1b7f64ac91d71f1005c27763d09df9" />
<File name="Data/Skills/sup_str.lua" part="program" sha1="adbae2d48a5b2e348fbd1452620337d882c976ab" />
<File name="Data/SkillStatMap.lua" part="program" sha1="8349018f0e844d1f0e97fdeb6f4ba8c87f1759e7" />
<File name="Data/Spectres.lua" part="program" sha1="bafe6f48ecbc005eae16bc0d1552a1af9eba2d44" />
Expand Down
2 changes: 1 addition & 1 deletion src/Data/Skills/sup_int.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 }),
Expand Down
2 changes: 1 addition & 1 deletion src/Export/Skills/sup_int.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 }),
Expand Down

0 comments on commit d7e6435

Please sign in to comment.