Path: blob/master/osu.Game.Rulesets.Mania/Mods/ManiaModNightcore.cs
4418 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Rulesets.Mania.Objects; using osu.Game.Rulesets.Mods; namespace osu.Game.Rulesets.Mania.Mods { public class ManiaModNightcore : ModNightcore<ManiaHitObject>, IManiaRateAdjustmentMod { // For now, all rate-increasing mods should be given a 1x multiplier in mania because it doesn't always // make the map any harder and is more of a personal preference. // In the future, we can consider adjusting this by experimenting with not applying the hitwindow leniency. public override double ScoreMultiplier => 1; } }