Skip to content

Commit

Permalink
Small changes to Renewing Blaze
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed Apr 1, 2024
1 parent c9f3c18 commit e3c2500
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class RenewingBlaze extends MajorDefensiveBuff {
// High eff healing
if (ratio >= perfectRatioCutoff) {
return {
perf: QualitativePerformance.Good,
perf: QualitativePerformance.Perfect,
explanation:
'Usage accumulated more than 50% of your HP and had high amounts of effective healing',
};
Expand All @@ -218,7 +218,7 @@ class RenewingBlaze extends MajorDefensiveBuff {
};
}
return {
perf: QualitativePerformance.Ok,
perf: QualitativePerformance.Good,
explanation: 'Usage Accumulated more than 50% of your HP',
};
}
Expand Down Expand Up @@ -268,7 +268,7 @@ class RenewingBlaze extends MajorDefensiveBuff {
<div>
<MitigationRowContainer>
<strong>Time</strong>
<strong>Heal</strong>
<strong>Mit.</strong>
</MitigationRowContainer>
{this.mitigations.map((mit) => {
return (
Expand Down

0 comments on commit e3c2500

Please sign in to comment.