From fa3e82be983b8d41bdf9c2726d61a2edb7b05e61 Mon Sep 17 00:00:00 2001 From: Nyo Date: Thu, 16 Jun 2016 13:40:45 +0200 Subject: [PATCH] .BANCHO. .FIX. Attempt to fix fellow spectator list --- events/startSpectatingEvent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/startSpectatingEvent.py b/events/startSpectatingEvent.py index f0947ae..c9b998d 100644 --- a/events/startSpectatingEvent.py +++ b/events/startSpectatingEvent.py @@ -44,7 +44,7 @@ def handle(userToken, packetData): # send fellowSpectatorJoined to all spectators for c in targetToken.spectators: if c is not userID: - #targetToken.enqueue(serverPackets.fellowSpectatorJoined(c)) + targetToken.enqueue(serverPackets.fellowSpectatorJoined(c)) specToken = glob.tokens.getTokenFromUserID(c) specToken.enqueue(serverPackets.fellowSpectatorJoined(userID))