X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_structured?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=68d4858da793b07d9385a0ebcc25a579dc353263;hb=5e1dd193ed529ff9d3ca3746736d74d3ca55d864;hp=647332452fdd3c94ecbf9e6f9fe0a7fea975dc1f;hpb=875642f0ff9420b94f6399b05bb849b12118f6e2;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index 6473324..68d4858 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -242,6 +242,8 @@ class Game(GameBase): quote(t.thing_char)), c_id) if hasattr(t, 'carrying') and t.carrying: self.io.send('THING_CARRYING %s' % (t.id_), c_id) + if hasattr(t, 'installable') and not t.portable: + self.io.send('THING_INSTALLED %s' % (t.id_), 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)]: