Skip to content

Commit

Permalink
fix oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed May 12, 2024
1 parent 050046d commit 1b2a4ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class ShatteringStar extends Analyzer {
const shatteringAmpStarDamage = calculateEffectiveDamage(event, SHATTERING_STAR_AMP_MULTIPLIER);

const curSpellWindow = this.currentWindow.ampedDamage[spellId] ?? { base: 0, focusingIris: 0 };
const curTotSpellWindow = this.currentWindow.ampedDamage[spellId] ?? {
const curTotSpellWindow = this.totalAmpedDamageRecord[spellId] ?? {
base: 0,
focusingIris: 0,
};
Expand Down

0 comments on commit 1b2a4ec

Please sign in to comment.