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

@ -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);
}
}