Skip to content

Commit

Permalink
Mark fails as ok, the spell does have *some* rng so lets not directly…
Browse files Browse the repository at this point in the history
… bonk
  • Loading branch information
Krealle committed Mar 22, 2024
1 parent 9e616d9 commit 017f8c8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class RenewingBlaze extends MajorDefensiveBuff {
// High overhealing
if (ratio < goodRatioCutoff) {
return {
perf: QualitativePerformance.Fail,
perf: QualitativePerformance.Ok,
explanation:
'Usage accumulated more than 50% of your HP but had high amounts of overhealing',
};
Expand All @@ -228,7 +228,7 @@ class RenewingBlaze extends MajorDefensiveBuff {
// Very low accumulation
if (mit.amount <= this.firstSeenMaxHp * 0.3) {
return {
perf: QualitativePerformance.Fail,
perf: QualitativePerformance.Ok,
explanation: 'Usage accumulated less than 30% of your HP',
};
}
Expand All @@ -242,7 +242,7 @@ class RenewingBlaze extends MajorDefensiveBuff {
}
// High overhealing
return {
perf: QualitativePerformance.Fail,
perf: QualitativePerformance.Ok,
explanation:
'Usage accumulated less than 50% of your HP and had high amounts of overhealing',
};
Expand Down

0 comments on commit 017f8c8

Please sign in to comment.