Skip to content

Commit

Permalink
fixed dexterity bonus pseudo mod calculation (PoE-TradeMacro#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eruyome authored and aRTy42 committed Jun 5, 2017
1 parent 310525a commit 2e1cbe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/ahk/POE-ItemInfo.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -8249,7 +8249,7 @@ CreatePseudoMods(mods, returnAllMods := False) {
energyShieldPercentGlobal := Floor(intelligenceFlat/5)
}
If (dexterityFlat) {
accuracyRatingFlat := accuracyRatingFlat + Floor(dexterityFlat/2)
accuracyRatingFlat := accuracyRatingFlat + Floor(dexterityFlat*2)
evasionRatingPercentGlobal := Floor(dexterityFlat/5)
}

Expand Down

0 comments on commit 2e1cbe8

Please sign in to comment.