Skip to content

Commit

Permalink
Nerf Flashlight rating when using Autopilot in droid star rating
Browse files Browse the repository at this point in the history
  • Loading branch information
Rian8337 committed Jan 20, 2025
1 parent 1891219 commit dc1d5e3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,8 @@ export class DroidDifficultyCalculator extends DifficultyCalculator<

if (this.mods.some((m) => m instanceof ModRelax)) {
this.attributes.flashlightDifficulty *= 0.7;
} else if (this.mods.some((m) => m instanceof ModAutopilot)) {
this.attributes.flashlightDifficulty *= 0.4;
}

this.attributes.flashlightDifficultStrainCount =
Expand Down

0 comments on commit dc1d5e3

Please sign in to comment.