1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 17:43:05 +08:00

Revert sealing

This commit is contained in:
Dan Balasescu 2022-08-12 22:32:27 +09:00
parent e5e9841652
commit 9d1b0b5836
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ namespace osu.Game.Rulesets.Mods
public override IconUsage? Icon => FontAwesome.Solid.Hammer; public override IconUsage? Icon => FontAwesome.Solid.Hammer;
public sealed override double ScoreMultiplier => 0.5; public override double ScoreMultiplier => 0.5;
public override bool RequiresConfiguration => true; public override bool RequiresConfiguration => true;

View File

@ -13,7 +13,7 @@ namespace osu.Game.Rulesets.Mods
public override string Acronym => "RX"; public override string Acronym => "RX";
public override IconUsage? Icon => OsuIcon.ModRelax; public override IconUsage? Icon => OsuIcon.ModRelax;
public override ModType Type => ModType.Automation; public override ModType Type => ModType.Automation;
public sealed override double ScoreMultiplier => 0.1; public override double ScoreMultiplier => 0.1;
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(ModNoFail), typeof(ModFailCondition) }; public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(ModNoFail), typeof(ModFailCondition) };
} }
} }