Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
LocalIdentity committed Aug 28, 2023
2 parents 73c8aeb + 3a89ec8 commit 19410ec
Show file tree
Hide file tree
Showing 31 changed files with 22,652 additions and 23,195 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [v2.33.4](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.33.4) (2023/08/28)

[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.33.3...v2.33.4)

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

## What's Changed
### Fixed Crashes
- Fix crash when using Kitava's Thirst [\#6531](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6531) ([Paliak](https://github.com/Paliak))
- Fix crash when loading some 3.20 builds [\#6525](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6525) ([Peechey](https://github.com/Peechey))
### Fixed Bugs
- Temporarily Revert trigger rate calculations to old formula [\#6530](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6530) ([Paliak](https://github.com/Paliak))
- Fix Doom Blast overlap count not affecting DPS [\#6541](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6541) ([Paliak](https://github.com/Paliak))
- Fix Skill Effect Duration affecting Totem duration [\#6536](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6536) ([Paliak](https://github.com/Paliak))
- Prevent Tawhoa's Chosen Attacks from being Exerted [\#6535](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6535) ([Paliak](https://github.com/Paliak))
- Fix crash when adding Support gems to some skills [\#6510](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6510) ([Paliak](https://github.com/Paliak))
- Fix Mirage Archer disabling skills supported by Manaforged Arrows [\#6521](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6521) ([Paliak](https://github.com/Paliak))



## [v2.33.3](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.33.3) (2023/08/26)

[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.33.2...v2.33.3)
Expand Down
15 changes: 15 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
VERSION[2.33.4][2023/08/28]

--- Fixed Crashes ---
* Fix crash when using Kitava's Thirst (Paliak)
* Fix crash when loading some 3.20 builds (Peechey)

--- Fixed Bugs ---
* Temporarily Revert trigger rate calculations to old formula (Paliak)
* Fix Doom Blast overlap count not affecting DPS (Paliak)
* Fix Skill Effect Duration affecting Totem duration (Paliak)
* Prevent Tawhoa's Chosen Attacks from being Exerted (Paliak)
* Fix crash when adding Support gems to some skills (Paliak)
* Fix Mirage Archer disabling skills supported by Manaforged Arrows (Paliak)


VERSION[2.33.3][2023/08/26]

--- Fixed Bugs ---
Expand Down
3 changes: 3 additions & 0 deletions src/Classes/ConfigTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,9 @@ function ConfigTabClass:Load(xml, fileName)
if node.attrib.name == "enemyIsBoss" then
self.input[node.attrib.name] = node.attrib.string:lower():gsub("(%l)(%w*)", function(a,b) return s_upper(a)..b end)
:gsub("Uber Atziri", "Boss"):gsub("Shaper", "Pinnacle"):gsub("Sirus", "Pinnacle")
-- backwards compat <=3.20, Uber Atziri Flameblast -> Atziri Flameblast
elseif node.attrib.name == "presetBossSkills" then
self.input[node.attrib.name] = node.attrib.string:gsub("^Uber ", "")
else
self.input[node.attrib.name] = node.attrib.string
end
Expand Down
8 changes: 5 additions & 3 deletions src/Classes/Item.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1024,8 +1024,10 @@ function ItemClass:BuildRaw()
t_insert(rawLines, "Selected Variant: " .. self.variant)

for _, baseLine in pairs(self.baseLines) do
writeModLine(baseLine)
end
if baseLine.variantList then
writeModLine(baseLine)
end
end
if self.hasAltVariant then
t_insert(rawLines, "Has Alt Variant: true")
t_insert(rawLines, "Selected Alt Variant: " .. self.variantAlt)
Expand Down Expand Up @@ -1574,7 +1576,7 @@ function ItemClass:BuildModList()
noSupports = skill.noSupports,
source = self.modSource,
triggered = skill.triggered,
triggerChance = skill.triggerChance
triggerChance = skill.triggerChance,
})
end
end
Expand Down
11,579 changes: 5,591 additions & 5,988 deletions src/Data/ModCache.lua

Large diffs are not rendered by default.

Loading

0 comments on commit 19410ec

Please sign in to comment.