1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:42:55 +08:00

Fix unintended changes due to renaming or otherwise

This commit is contained in:
smoogipoo 2021-02-10 20:27:47 +09:00
parent 0dcdad9839
commit c458c4cfae
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ namespace osu.Game.Rulesets.Osu.Mods
{
var osuRuleset = (DrawableOsuRuleset)drawableRuleset;
if (!ClassicNoteLock.Value)
if (ClassicNoteLock.Value)
osuRuleset.Playfield.HitPolicy = new ObjectOrderedHitPolicy();
}

View File

@ -53,7 +53,7 @@ namespace osu.Game.Rulesets.Osu.UI
approachCircles = new ProxyContainer { RelativeSizeAxes = Axes.Both },
};
HitPolicy = new ObjectOrderedHitPolicy();
HitPolicy = new StartTimeOrderedHitPolicy();
var hitWindows = new OsuHitWindows();
foreach (var result in Enum.GetValues(typeof(HitResult)).OfType<HitResult>().Where(r => r > HitResult.None && hitWindows.IsHitResultAllowed(r)))