1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 04:24:10 +08:00

Prevent editor from crashing for rulesets with no compose screen implementation

This commit is contained in:
Bartłomiej Dach
2020-11-19 22:11:52 +01:00
Unverified
parent 7f3c8ad744
commit 6356b2dde9
@@ -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;
}