Skip to content

Commit

Permalink
Fix Room.CopyFrom() skipping a field
Browse files Browse the repository at this point in the history
Was making the close button not display when creating a room anew.
  • Loading branch information
bdach committed Nov 22, 2024
1 parent cfc38df commit 8b68859
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions osu.Game/Online/Rooms/Room.cs
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ public void CopyFrom(Room other)
Type = other.Type;
MaxParticipants = other.MaxParticipants;
ParticipantCount = other.ParticipantCount;
StartDate = other.StartDate;
EndDate = other.EndDate;
UserScore = other.UserScore;
QueueMode = other.QueueMode;
Expand Down

0 comments on commit 8b68859

Please sign in to comment.