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:
parent
a59124dd93
commit
64a32723f3
@ -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))
|
||||||
|
Loading…
Reference in New Issue
Block a user