Fix playlist not updating correcly

This commit is contained in:
smoogipoo
2018-12-26 22:14:49 +09:00
parent a1fa914c66
commit e7310a16c7
3 changed files with 6 additions and 2 deletions

View File

@ -154,7 +154,9 @@ namespace osu.Game.Screens.Multi
{
foreach (var pi in remote.Playlist)
pi.MapObjects(beatmaps, rulesets);
local.CopyFrom(remote);
if (local != remote)
local.CopyFrom(remote);
}
/// <summary>