X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_structured?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=95ea71dd71d4e5848924c33cd75f4d419f2eaa64;hb=7ca861abd3acab67ddf18c39dbaadd9b401f7892;hp=415c3e8002e7178d374c38efdf9c1bec843fc582;hpb=c3ada0bf213337ff2c97e2f33bbf6e6dbedaea38;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index 415c3e8..95ea71d 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.')) @@ -355,6 +356,7 @@ class Game(GameBase): if s.temporary: self.remove_thing(s) break + t.try_to_sit() def run_tick(self): @@ -373,6 +375,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: