From bb97eae8b1b46df5162a6502a282b0915527dd6b Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 9 Dec 2020 16:02:37 +0900 Subject: [PATCH] Update outdated exception references in xmldoc --- osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs b/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs index 836260a26d..e2e7b6b991 100644 --- a/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs +++ b/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs @@ -14,7 +14,7 @@ namespace osu.Game.Online.RealtimeMultiplayer /// Request to join a multiplayer room. /// /// The databased room ID. - /// If the user is already in the requested (or another) room. + /// If the user is already in the requested (or another) room. Task JoinRoom(long roomId); /// @@ -52,6 +52,7 @@ namespace osu.Game.Online.RealtimeMultiplayer /// /// A user other than the current host is attempting to start the game. /// If the user is not in a room. + /// If an attempt to start the game occurs when the game's (or users') state disallows it. Task StartMatch(); } }