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)
{
base.ApplyToDrawableRuleset(drawableRuleset);
laneCovers.ForEach(laneCover => laneCover.Scale = new Vector2(1f, -1f));
LaneCovers.ForEach(laneCover => laneCover.Scale = new Vector2(1f, -1f));
}
}
}