X-Git-Url: https://plomlompom.com/repos/task?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=90f70d9937ab84d4afd0f47ea5da4e6c8893324c;hb=afca68ffc4beb3a8365875d459fc2ce05784f2c0;hp=c560993e40b5da675b9b6d73f3fea82014b525ba;hpb=ee83c5baaf2a207a0e1c025985f59797db7cdf7a;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index c560993..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: @@ -557,6 +559,9 @@ class Game(GameBase): if hasattr(t, 'installable') and (not t.portable): write(f, 'THING_INSTALLED %s' % t.id_) if hasattr(t, 'design'): + if t.type_ != 'Hat': + write(f, 'GOD_THING_DESIGN_SIZE %s %s' % (t.id_, + t.design_size)) write(f, 'GOD_THING_DESIGN %s %s' % (t.id_, quote(t.design))) if t.type_ == 'Door' and t.blocks_movement: write(f, 'THING_DOOR_CLOSED %s %s' % (t.id_, int(t.locked)))