diff --git a/events/startSpectatingEvent.py b/events/startSpectatingEvent.py index c9b998d..f0947ae 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)) diff --git a/events/stopSpectatingEvent.py b/events/stopSpectatingEvent.py index d333e84..9161714 100644 --- a/events/stopSpectatingEvent.py +++ b/events/stopSpectatingEvent.py @@ -22,7 +22,7 @@ def handle(userToken, _): spec = glob.tokens.getTokenFromUserID(c) spec.enqueue(serverPackets.fellowSpectatorLeft(userID)) - targetToken.enqueue(serverPackets.fellowSpectatorLeft(userID)) + #targetToken.enqueue(serverPackets.fellowSpectatorLeft(userID)) # Console output # TODO: Move messages in stop spectating