X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=90f70d9937ab84d4afd0f47ea5da4e6c8893324c;hb=64cf00e418112f70163a5b24ccad8247a88abfd9;hp=415c3e8002e7178d374c38efdf9c1bec843fc582;hpb=ac4f9e2337229827418b191743c1182cc5eae4d1;p=plomrogue2 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: