X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=31cae6f2008f510a73046628bef1ee797233af2e;hb=9c3aaa1285200c1161c3beaefab464597445daf7;hp=36a76561e21870d66d0e250e2d5a6d1b4de02d20;hpb=871008b21686f5e4b462568ff4520ea299dd496f;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index 36a7656..31cae6f 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -291,6 +291,9 @@ class Game(GameBase): c_id) if hasattr(t, 'installable') and not t.portable: self.io.send('THING_INSTALLED %s' % (t.id_), c_id) + if hasattr(t, 'design'): + self.io.send('THING_HAT %s %s' % (t.id_, + quote(t.design)), c_id) for big_yx in self.portals: for little_yx in [little_yx for little_yx in self.portals[big_yx] if player.fov_test(big_yx, little_yx)]: