Rename Mod

This commit is contained in:
Jason Won 2021-10-15 00:22:57 -04:00
parent 2dfc42dd53
commit 538d980072
2 changed files with 5 additions and 5 deletions

View File

@ -16,13 +16,13 @@
namespace osu.Game.Rulesets.Osu.Mods namespace osu.Game.Rulesets.Osu.Mods
{ {
public class OsuModGhost : Mod, IUpdatableByPlayfield, IApplicableToScoreProcessor public class OsuModNoScope : Mod, IUpdatableByPlayfield, IApplicableToScoreProcessor
{ {
public const float CURSOR_ALPHA_TRANSITION_DURATION = 100; public const float CURSOR_ALPHA_TRANSITION_DURATION = 100;
public override string Name => "Ghost"; public override string Name => "No Scope";
public override string Acronym => "GS"; public override string Acronym => "NS";
public override ModType Type => ModType.Fun; public override ModType Type => ModType.Fun;
public override IconUsage? Icon => FontAwesome.Solid.Ghost; public override IconUsage? Icon => FontAwesome.Solid.EyeSlash;
public override string Description => "Where's the cursor?"; public override string Description => "Where's the cursor?";
public override double ScoreMultiplier => 1; public override double ScoreMultiplier => 1;
private readonly BindableFloat cursorAlpha = new BindableFloat(); private readonly BindableFloat cursorAlpha = new BindableFloat();

View File

@ -192,7 +192,7 @@ public override IEnumerable<Mod> GetModsFor(ModType type)
new OsuModBarrelRoll(), new OsuModBarrelRoll(),
new OsuModApproachDifferent(), new OsuModApproachDifferent(),
new OsuModMuted(), new OsuModMuted(),
new OsuModGhost(), new OsuModNoScope(),
}; };
case ModType.System: case ModType.System: