1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 00:43:21 +08:00

Handle collection changed event

This commit is contained in:
smoogipoo 2021-05-20 19:37:43 +09:00
parent 7ee81669f7
commit ee4bca9ed1

View File

@ -127,6 +127,14 @@ namespace osu.Game.Screens.Spectate
foreach (var (userId, _) in e.OldItems.AsNonNull())
onUserStateRemoved(userId);
break;
case NotifyDictionaryChangedAction.Replace:
foreach (var (userId, _) in e.OldItems.AsNonNull())
onUserStateRemoved(userId);
foreach (var (userId, state) in e.NewItems.AsNonNull())
onUserStateAdded(userId, state);
break;
}
}