mirror of https://github.com/ppy/osu
Formatting fixes
This commit is contained in:
parent
a5679f7bf5
commit
d3cd267036
|
@ -57,6 +57,7 @@ public abstract class RulesetContainer : Container
|
|||
public abstract IEnumerable<HitObject> Objects { get; }
|
||||
|
||||
private readonly Lazy<Playfield> playfield;
|
||||
|
||||
/// <summary>
|
||||
/// The playfield.
|
||||
/// </summary>
|
||||
|
@ -250,8 +251,8 @@ private void applyMods(IEnumerable<Mod> mods, OsuConfigManager config)
|
|||
foreach (var mod in mods.OfType<IApplicableToRulesetContainer<TObject>>())
|
||||
mod.ApplyToRulesetContainer(this);
|
||||
|
||||
foreach (var mod in mods.OfType<IReadFromConfig>())
|
||||
mod.ReadFromConfig(config);
|
||||
foreach (var mod in mods.OfType<IReadFromConfig>())
|
||||
mod.ReadFromConfig(config);
|
||||
}
|
||||
|
||||
public override void SetReplay(Replay replay)
|
||||
|
|
Loading…
Reference in New Issue