Skip to content

Commit

Permalink
don't recalc scores on current calc and old wife without replaydata
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Apr 10, 2020
1 parent 369d86f commit cbb418a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Etterna/Singletons/ScoreManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ ScoresAtRate::LoadFromNode(const XNode* node,
// be taken care of by calcplayerrating which will be called after
// recalculatessrs
bool oldcalc = scores[sk].GetSSRCalcVersion() != GetCalcVersion();
bool getremarried = scores[sk].GetWifeVersion() < 3;
bool getremarried = scores[sk].GetWifeVersion() < 3 && scores[sk].HasReplayData();
if ((oldcalc || getremarried) && SONGMAN->IsChartLoaded(ck)
&& scores[sk].GetWifeGrade() != Grade_Failed)
SCOREMAN->scorestorecalc.emplace_back(&scores[sk]);
Expand Down

0 comments on commit cbb418a

Please sign in to comment.