Skip to content

Commit

Permalink
Merge pull request #197 from Wieku/dev
Browse files Browse the repository at this point in the history
Show FL stars
  • Loading branch information
Wieku authored Sep 26, 2021
2 parents 3c9208c + 43a56fd commit 8a43c76
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/rulesets/osu/ruleset.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,11 @@ func NewOsuRuleset(beatMap *beatmap.BeatMap, cursors []*graphics.Cursor, mods []
star := ruleset.oppDiffs[mods[i]&difficulty.DifficultyAdjustMask][len(ruleset.oppDiffs[mods[i]&difficulty.DifficultyAdjustMask])-1]
log.Println("\tAim Stars: ", star.Aim)
log.Println("\tSpeed Stars:", star.Speed)

if ruleset.experimentalPP && mods[i].Active(difficulty.Flashlight) {
log.Println("\tFL Stars: ", star.Flashlight)
}

log.Println("\tTotal Stars:", star.Total)
}

Expand Down

0 comments on commit 8a43c76

Please sign in to comment.