1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-10 10:00:45 +09:00

Fix incorrect mania simulation score with HT/EZ/NF

This commit is contained in:
smoogipoo 2021-05-31 20:15:25 +09:00
parent f41cf7382e
commit c51b62a89f
2 changed files with 34 additions and 3 deletions

View file

@ -57,7 +57,7 @@ namespace PerformanceCalculator.Simulate
{
var ruleset = Ruleset;
var mods = getMods(ruleset).ToArray();
var mods = GetMods(ruleset).ToArray();
var workingBeatmap = new ProcessorWorkingBeatmap(Beatmap);
@ -131,7 +131,7 @@ namespace PerformanceCalculator.Simulate
}
}
private List<Mod> getMods(Ruleset ruleset)
protected List<Mod> GetMods(Ruleset ruleset)
{
var mods = new List<Mod>();
if (Mods == null)