diff --git a/osu.Server.Spectator/Hubs/Multiplayer/Matchmaking/MatchmakingMatchController.cs b/osu.Server.Spectator/Hubs/Multiplayer/Matchmaking/MatchmakingMatchController.cs index 9c911a1f..33b3217f 100644 --- a/osu.Server.Spectator/Hubs/Multiplayer/Matchmaking/MatchmakingMatchController.cs +++ b/osu.Server.Spectator/Hubs/Multiplayer/Matchmaking/MatchmakingMatchController.cs @@ -149,6 +149,15 @@ public async Task HandleUserRequest(MultiplayerRoomUser user, MatchUserRequest r Action = avatarAction.Action }); break; + + case MatchmakingCursorPositionRequest cursorPosition: + await hub.NotifyNewMatchEvent(room, new MatchmakingCursorPositionEvent + { + UserId = user.UserID, + X = cursorPosition.X, + Y = cursorPosition.Y, + }); + break; } }