Skip to content

Commit

Permalink
We should technically only increment prescienceCount if we actually f…
Browse files Browse the repository at this point in the history
…ound a target
  • Loading branch information
Krealle committed Jan 9, 2024
1 parent faf47a8 commit 1ce7a54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -506,9 +506,9 @@ class BuffTargetHelper extends Analyzer {
newNote += `${formatDuration(curTime)} - ${
mrtColorMap.get(this.playerWhitelist.get(target) ?? '') + target + '|r'
} \n`;
prescienceCount = prescienceCount === 3 ? 1 : prescienceCount + 1;
}

prescienceCount = prescienceCount === 3 ? 1 : prescienceCount + 1;
curTime += prescienceCooldown;
}

Expand Down

0 comments on commit 1ce7a54

Please sign in to comment.