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:
parent
f41cf7382e
commit
c51b62a89f
2 changed files with 34 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue