fix naming convention violation

This commit is contained in:
LastExceed
2020-07-15 11:29:13 +02:00
parent 4a2890c054
commit d2e78d080c
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ namespace osu.Game.Rulesets.Mania.Mods
public override void ApplyToDrawableRuleset(DrawableRuleset<ManiaHitObject> drawableRuleset) public override void ApplyToDrawableRuleset(DrawableRuleset<ManiaHitObject> drawableRuleset)
{ {
base.ApplyToDrawableRuleset(drawableRuleset); base.ApplyToDrawableRuleset(drawableRuleset);
laneCovers.ForEach(laneCover => laneCover.Scale = new Vector2(1f, -1f)); LaneCovers.ForEach(laneCover => laneCover.Scale = new Vector2(1f, -1f));
} }
} }
} }

View File

@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Mania.Mods
public override string Description => @"Keys fade out before you hit them!"; public override string Description => @"Keys fade out before you hit them!";
public override double ScoreMultiplier => 1; public override double ScoreMultiplier => 1;
public override Type[] IncompatibleMods => new[] { typeof(ModFlashlight<ManiaHitObject>) }; 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) public virtual void ApplyToDrawableRuleset(DrawableRuleset<ManiaHitObject> drawableRuleset)
{ {
@ -55,7 +55,7 @@ namespace osu.Game.Rulesets.Mania.Mods
} }
}); });
laneCovers.Add(laneCover); LaneCovers.Add(laneCover);
} }
} }