From 71479a362ed07ab792833f1378b0206d4ba68117 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 28 Dec 2020 11:19:32 +0100 Subject: [PATCH] Fix faulty send-to-all in login process. --- plomrogue/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]: -- 2.30.2