From b3cfded8f209ffcc18b5e9e3c0ca8ab714af4601 Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Wed, 24 Sep 2025 18:58:01 +0900 Subject: [PATCH] Fix matchmaking chat not working --- osu.Game/Online/Rooms/Room.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Online/Rooms/Room.cs b/osu.Game/Online/Rooms/Room.cs index 4200fed0dd..dda069bba0 100644 --- a/osu.Game/Online/Rooms/Room.cs +++ b/osu.Game/Online/Rooms/Room.cs @@ -358,6 +358,7 @@ namespace osu.Game.Online.Rooms public Room(MultiplayerRoom room) { RoomID = room.RoomID; + ChannelId = room.ChannelID; Name = room.Settings.Name; Password = room.Settings.Password; Type = room.Settings.MatchType;