Add missing property copies in Room.CopyFrom implementation

This commit is contained in:
Dean Herbert 2022-02-22 15:47:00 +09:00
parent 71ae425fb2
commit 61b3280de1

View File

@ -194,6 +194,8 @@ namespace osu.Game.Online.Rooms
EndDate.Value = other.EndDate.Value;
UserScore.Value = other.UserScore.Value;
QueueMode.Value = other.QueueMode.Value;
DifficultyRange.Value = other.DifficultyRange.Value;
PlaylistItemStats.Value = other.PlaylistItemStats.Value;
if (EndDate.Value != null && DateTimeOffset.Now >= EndDate.Value)
Status.Value = new RoomStatusEnded();