From 64cf00e418112f70163a5b24ccad8247a88abfd9 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 20 Dec 2020 16:32:12 +0100 Subject: [PATCH] Add (temporary?) debug info on joins/parts/session numbers. --- plomrogue/commands.py | 1 + plomrogue/game.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/plomrogue/commands.py b/plomrogue/commands.py index a7b704e..9f7bfff 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -128,6 +128,7 @@ def cmd_NICK(game, nick, connection_id): raise GameError('can only rename when already logged in') old_nick = t.name t.name = nick + print('DEBUG RENAME %s %s' % (old_nick, nick)) game.io.send('CHAT ' + quote(old_nick + ' renamed themselves to ' + nick)) game.changed = True game.record_change(t.position, 'other') diff --git a/plomrogue/game.py b/plomrogue/game.py index 415c3e8..90f70d9 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -346,6 +346,7 @@ class Game(GameBase): 'thing_id': t.id_, 'status': 'player' } + print('DEBUG LOGIN', t.name, len(self.sessions)) self.io.send('PLAYER_ID %s' % t.id_, connection_id) self.io.send('LOGIN_OK', connection_id) self.io.send('CHAT ' + quote(t.name + ' entered the map.')) @@ -373,6 +374,7 @@ class Game(GameBase): spawn_point = self.add_thing('SpawnPoint', t.position) spawn_point.temporary = True spawn_point.name = t.name + print('DEBUG LEFT MAP', t.name) self.remove_thing(t) to_delete += [connection_id] for connection_id in to_delete: -- 2.30.2