1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 18:23:04 +08:00

Merge pull request #6941 from andy840119/andy840119/_20191124_fix_ApplyToDrawableHitObjects

IApplicableToDrawableHitObjects should be able to get all the hitobject in nasted Playfield
This commit is contained in:
Dan Balasescu 2019-11-25 11:51:01 +09:00 committed by GitHub
commit 987ab8b624
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -224,7 +224,7 @@ namespace osu.Game.Rulesets.UI
Playfield.PostProcess();
foreach (var mod in mods.OfType<IApplicableToDrawableHitObjects>())
mod.ApplyToDrawableHitObjects(Playfield.HitObjectContainer.Objects);
mod.ApplyToDrawableHitObjects(Playfield.AllHitObjects);
}
public override void RequestResume(Action continueResume)