Skip to content

Commit

Permalink
[Core] Adjust tertiary stat penalty
Browse files Browse the repository at this point in the history
I guess I forgot to math at some point or the values were different once upon a time, either way the penalty above having 25% raw of a given tertiary was incorrect and has been adjusted
  • Loading branch information
Pewtro committed Feb 29, 2024
1 parent b8ec2ef commit 26a04e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/CHANGELOG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import SpellLink from 'interface/SpellLink';

// prettier-ignore
export default [
change(date(2024, 2, 29), 'Correct incorrect tertiary stat scaling above 25% raw and 19% character sheet rating', Putro),
change(date(2024, 2, 26), 'Switch icon source to the WCL CDN.', emallson),
change(date(2024, 2, 18), <>Fix crash in QualitativePerformance</>, Trevor),
change(date(2024, 2, 17), 'Add a missed realm for Classic.', Putro),
Expand Down
2 changes: 1 addition & 1 deletion src/parser/shared/modules/StatTracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class StatTracker extends Analyzer {
{ base: 0.1, scaled: 0.1, penaltyAboveThis: 0.2 },
{ base: 0.15, scaled: 0.14, penaltyAboveThis: 0.4 },
{ base: 0.2, scaled: 0.17, penaltyAboveThis: 0.6 },
{ base: 0.25, scaled: 0.19, penaltyAboveThis: 0.8 },
{ base: 0.25, scaled: 0.19, penaltyAboveThis: 0.6 },
{ base: 1, scaled: 0.49, penaltyAboveThis: 1 },
];

Expand Down

0 comments on commit 26a04e4

Please sign in to comment.