1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 02:25:29 +08:00

Merge pull request #24427 from peppy/fix-skin-editor-crash-multi-spectator

Fix game crashing when entering skin editor in multiplayer spectator
This commit is contained in:
Bartłomiej Dach
2023-08-01 18:25:11 +02:00
committed by GitHub
Unverified
+1 -1
View File
@@ -356,7 +356,7 @@ namespace osu.Game.Overlays.SkinEditor
{
new SettingsDropdown<SkinComponentsContainerLookup?>
{
Items = availableTargets.Select(t => t.Lookup),
Items = availableTargets.Select(t => t.Lookup).Distinct(),
Current = selectedTarget,
}
}