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

Fix Room.CopyFrom() skipping a field

Was making the close button not display when creating a room anew.
This commit is contained in:
Bartłomiej Dach 2024-11-22 09:55:40 +01:00
parent cfc38df889
commit 8b68859d9d
No known key found for this signature in database

View File

@ -379,6 +379,7 @@ namespace osu.Game.Online.Rooms
Type = other.Type;
MaxParticipants = other.MaxParticipants;
ParticipantCount = other.ParticipantCount;
StartDate = other.StartDate;
EndDate = other.EndDate;
UserScore = other.UserScore;
QueueMode = other.QueueMode;