mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Fix incorrect test spectator client implementation
This commit is contained in:
@ -321,7 +321,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
||||
|
||||
public override void WatchUser(int userId)
|
||||
{
|
||||
if (userSentStateDictionary.TryGetValue(userId, out var sent) && sent)
|
||||
if (!PlayingUsers.Contains(userId) && userSentStateDictionary.TryGetValue(userId, out var sent) && sent)
|
||||
{
|
||||
// usually the server would do this.
|
||||
sendState(userId, userBeatmapDictionary[userId]);
|
||||
|
Reference in New Issue
Block a user