Skip to content

Commit

Permalink
forgot 4pc check for duration
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed Jan 9, 2024
1 parent 7b8deb7 commit dedc97f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ class BuffTargetHelper extends Analyzer {
); */
prescienceMap.set(
nextTarget,
curTime + prescienceDuration * (prescienceCount === 3 ? 2 : 1),
curTime + prescienceDuration * (prescienceCount === 3 && this.has4Pc ? 2 : 1),
);
target = nextTarget;
break;
Expand Down

0 comments on commit dedc97f

Please sign in to comment.