From: Christian Heller Date: Mon, 28 Dec 2020 10:19:32 +0000 (+0100) Subject: Fix faulty send-to-all in login process. X-Git-Url: https://plomlompom.com/repos/?p=plomrogue2;a=commitdiff_plain;h=71479a362ed07ab792833f1378b0206d4ba68117 Fix faulty send-to-all in login process. --- diff --git a/plomrogue/game.py b/plomrogue/game.py index ba982dd..8fcb430 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -352,7 +352,7 @@ class Game(GameBase): if len(self.sessions) > 200: print('DEBUG LOGIN TOO MANY FOR', connection_id) self.io.send('CHAT "sorry, too many users currenty ' - 'logged in, try again later"') + 'logged in, try again later"', connection_id) return for t in [t for t in self.things if t.type_ == 'Player' and t.name == nick]: