From 36ca5de2a83eac3176e0209a9e781e7d6e58af47 Mon Sep 17 00:00:00 2001 From: Barinade Date: Sun, 18 Dec 2022 17:19:46 -0600 Subject: [PATCH] account for total points when scoring a mine hit in replays just in case --- src/Etterna/Models/HighScore/Replay.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Etterna/Models/HighScore/Replay.cpp b/src/Etterna/Models/HighScore/Replay.cpp index ea0f683187..c1a03adec6 100644 --- a/src/Etterna/Models/HighScore/Replay.cpp +++ b/src/Etterna/Models/HighScore/Replay.cpp @@ -3271,6 +3271,7 @@ Replay::GenerateJudgeInfoAndReplaySnapshots(int startingRow, float timingScale) for (auto& trr : it->second) { if (trr.type == TapNoteType_Mine) { cws += REPLAYS->CustomMineScoringFunction(); + mws += REPLAYS->CustomTotalWifePointsCalculation(trr.type); } else { auto tns = REPLAYS->CustomOffsetJudgingFunction(trr.offset, timingScale);