1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 23:50:42 +08:00

Merge pull request #10914 from bdach/prevent-composer-null-crash

This commit is contained in:
Dean Herbert
2020-11-20 12:18:44 +09:00
committed by GitHub
Unverified
@@ -32,7 +32,8 @@ namespace osu.Game.Screens.Edit.Compose
composer = ruleset?.CreateHitObjectComposer();
// make the composer available to the timeline and other components in this screen.
dependencies.CacheAs(composer);
if (composer != null)
dependencies.CacheAs(composer);
return dependencies;
}