Skip to content

Commit

Permalink
Trigger toasties when hitting the 250th note (or what you set it to)
Browse files Browse the repository at this point in the history
.... mhmm
  • Loading branch information
poco0317 committed Feb 13, 2021
1 parent 461695c commit 51f2241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Etterna/Models/ScoreKeepers/ScoreKeeperNormal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ ScoreKeeperNormal::HandleTapRowScore(const NoteData& nd, int iRow)
// Toasty combo
if (scoreOfLastTap >= m_toasty_min_tns) {
m_cur_toasty_combo += iNumTapsInRow;
if (m_cur_toasty_combo > m_next_toasty_at) {
if (m_cur_toasty_combo >= m_next_toasty_at) {
++m_cur_toasty_level;
// Broadcast the message before posting the screen message so that
// the transition layer can catch the message to know the level and
Expand Down

0 comments on commit 51f2241

Please sign in to comment.