home · contact · privacy
Fix broken MusicPlayer handling.
[plomrogue2] / plomrogue / game.py
index 647332452fdd3c94ecbf9e6f9fe0a7fea975dc1f..68d4858da793b07d9385a0ebcc25a579dc353263 100755 (executable)
@@ -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)]: