Skip to content

Commit

Permalink
change perf thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorm4 committed Sep 16, 2024
1 parent f0100a7 commit 950e5d1
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { explanationAndDataSubsection } from 'interface/guide/components/Explana
import { RoundedPanel } from 'interface/guide/components/GuideDivs';
import { GUIDE_CORE_EXPLANATION_PERCENT } from '../../Guide';
import { BoxRowEntry, PerformanceBoxRow } from 'interface/guide/components/PerformanceBoxRow';
import { getAveragePerf, QualitativePerformance } from 'parser/ui/QualitativePerformance';
import { QualitativePerformance } from 'parser/ui/QualitativePerformance';
import BaseCelestialAnalyzer from '../spells/BaseCelestialAnalyzer';

class StrengthOfTheBlackOx extends Analyzer {
Expand Down Expand Up @@ -56,12 +56,13 @@ class StrengthOfTheBlackOx extends Analyzer {
this.wastedBuffs += 1;
}
const hasBuff = this.hasManaBuff();
const perfs = [
isConsumed ? QualitativePerformance.Good : QualitativePerformance.Fail,
hasBuff ? QualitativePerformance.Good : QualitativePerformance.Ok,
];
this.entries.push({
value: getAveragePerf(perfs),
value:
isConsumed && hasBuff
? QualitativePerformance.Perfect
: isConsumed !== hasBuff
? QualitativePerformance.Good
: QualitativePerformance.Fail,
tooltip: (
<>
<div>
Expand Down

0 comments on commit 950e5d1

Please sign in to comment.