Skip to content

Commit

Permalink
ignore ccon scores when rescoring to wife3
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 7, 2020
1 parent 9b7235c commit 256e54e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Etterna/Models/Misc/HighScore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1381,11 +1381,17 @@ HighScore::RescoreToWife2Judge(int x)
bool
HighScore::RescoreToWife3(float pmax)
{
// already done
if (GetWifeVersion() == 3)
return false;
// can't do it or not worth the time
if (!LoadReplayData() || m_Impl->GetWifeGrade() == Grade_Failed)
return false;

// we can do it, but the result won't make sense
if (!m_Impl->bNoChordCohesion)
return false;

// i don't know why this would be possible or what to do if we catch these
// cases, but it is somehow (probably exclusive to my profile)
if (m_Impl->fJudgeScale == 0.f) {
Expand Down

0 comments on commit 256e54e

Please sign in to comment.