mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 17:52:56 +08:00
fix naming convention violation
This commit is contained in:
parent
4a2890c054
commit
d2e78d080c
@ -19,7 +19,7 @@ namespace osu.Game.Rulesets.Mania.Mods
|
||||
public override void ApplyToDrawableRuleset(DrawableRuleset<ManiaHitObject> drawableRuleset)
|
||||
{
|
||||
base.ApplyToDrawableRuleset(drawableRuleset);
|
||||
laneCovers.ForEach(laneCover => laneCover.Scale = new Vector2(1f, -1f));
|
||||
LaneCovers.ForEach(laneCover => laneCover.Scale = new Vector2(1f, -1f));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Mania.Mods
|
||||
public override string Description => @"Keys fade out before you hit them!";
|
||||
public override double ScoreMultiplier => 1;
|
||||
public override Type[] IncompatibleMods => new[] { typeof(ModFlashlight<ManiaHitObject>) };
|
||||
protected List<LaneCover> laneCovers = new List<LaneCover>();
|
||||
protected List<LaneCover> LaneCovers = new List<LaneCover>();
|
||||
|
||||
public virtual void ApplyToDrawableRuleset(DrawableRuleset<ManiaHitObject> drawableRuleset)
|
||||
{
|
||||
@ -55,7 +55,7 @@ namespace osu.Game.Rulesets.Mania.Mods
|
||||
}
|
||||
});
|
||||
|
||||
laneCovers.Add(laneCover);
|
||||
LaneCovers.Add(laneCover);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user