Skip to content

Commit

Permalink
screen failgrades out of scorestorecalc entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Apr 10, 2020
1 parent 98636a3 commit 4874677
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Etterna/Singletons/ScoreManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,8 @@ ScoresAtRate::LoadFromNode(const XNode* node,
// recalculatessrs
bool oldcalc = scores[sk].GetSSRCalcVersion() != GetCalcVersion();
bool getremarried = scores[sk].GetWifeVersion() < 3;
if ((oldcalc || getremarried) && SONGMAN->IsChartLoaded(ck))
if ((oldcalc || getremarried) && SONGMAN->IsChartLoaded(ck)
&& scores[sk].GetWifeGrade() != Grade_Failed)
SCOREMAN->scorestorecalc.emplace_back(&scores[sk]);
}
}
Expand Down

0 comments on commit 4874677

Please sign in to comment.