1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 19:12:54 +08:00

One more case

This commit is contained in:
smoogipoo 2020-12-21 16:23:42 +09:00
parent a59124dd93
commit 64a32723f3

View File

@ -139,7 +139,7 @@ namespace osu.Game.Online.Multiplayer
ParticipantCount.Value = other.ParticipantCount.Value; ParticipantCount.Value = other.ParticipantCount.Value;
EndDate.Value = other.EndDate.Value; EndDate.Value = other.EndDate.Value;
if (DateTimeOffset.Now >= EndDate.Value) if (EndDate.Value != null && DateTimeOffset.Now >= EndDate.Value)
Status.Value = new RoomStatusEnded(); Status.Value = new RoomStatusEnded();
if (!Playlist.SequenceEqual(other.Playlist)) if (!Playlist.SequenceEqual(other.Playlist))