Skip to content

Commit

Permalink
better const name
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed Nov 26, 2024
1 parent 39973d9 commit 1f252d8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class MoltenEmbers extends Analyzer {
moltenEmbersDamageSources: DamageSources = {};

hasFontOfMagic = false;
perfectMoltenEmbersRank = 3;
perfectFireBreathRank = 3;

moltenEmbersAmplifiers = MOLTEN_EMBERS_MULTIPLIER_NO_BLAST_FURNACE;

Expand Down Expand Up @@ -95,7 +95,7 @@ class MoltenEmbers extends Analyzer {
TALENTS.FONT_OF_MAGIC_AUGMENTATION_TALENT,
);
if (this.hasFontOfMagic) {
this.perfectMoltenEmbersRank = 4;
this.perfectFireBreathRank = 4;
}

if (this.selectedCombatant.hasTalent(TALENTS.BLAST_FURNACE_TALENT)) {
Expand Down Expand Up @@ -184,7 +184,7 @@ class MoltenEmbers extends Analyzer {
<SpellLink spell={SPELLS.FIRE_BREATH} /> upranked
</div>
);
if (this.perfectMoltenEmbersRank === upheavalCast.fireBreathRank) {
if (this.perfectFireBreathRank === upheavalCast.fireBreathRank) {
return {
performance: QualitativePerformance.Perfect,
summary: summary,
Expand All @@ -204,7 +204,7 @@ class MoltenEmbers extends Analyzer {
<div>
<SpellLink spell={SPELLS.FIRE_BREATH} /> cast at rank {upheavalCast.fireBreathRank}. You
should try to uprank <SpellLink spell={SPELLS.FIRE_BREATH} /> as high as possible (
{this.perfectMoltenEmbersRank}).
{this.perfectFireBreathRank}).
</div>
),
};
Expand Down

0 comments on commit 1f252d8

Please sign in to comment.