X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/gitweb.js?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=647332452fdd3c94ecbf9e6f9fe0a7fea975dc1f;hb=875642f0ff9420b94f6399b05bb849b12118f6e2;hp=cd1ce2ea8ee5e3c947e10075acb2a0e39ae64969;hpb=51addf32b5a876c47325fb55756aacaea65ed0da;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index cd1ce2e..6473324 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -231,15 +231,17 @@ class Game(GameBase): self.io.send('MAP_CONTROL %s' % quote(visible_control), c_id) for t in [t for t in self.things if player.fov_test(*t.position)]: target_yx = player.fov_stencil.target_yx(*t.position) - self.io.send('THING %s %s %s %s' % (target_yx, t.type_, - quote(t.protection), t.id_), c_id) + self.io.send('THING %s %s %s %s %s' % (target_yx, t.type_, + quote(t.protection), + t.id_, int(t.portable)), + c_id) if hasattr(t, 'name'): self.io.send('THING_NAME %s %s' % (t.id_, quote(t.name)), c_id) if hasattr(t, 'thing_char'): self.io.send('THING_CHAR %s %s' % (t.id_, quote(t.thing_char)), c_id) if hasattr(t, 'carrying') and t.carrying: - self.io.send('THING_CARRYING %s' % (t.id_)) + self.io.send('THING_CARRYING %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)]: @@ -373,6 +375,8 @@ class Game(GameBase): write(f, 'GOD_THING_PROTECTION %s %s' % (t.id_, quote(t.protection))) if hasattr(t, 'name'): write(f, 'GOD_THING_NAME %s %s' % (t.id_, quote(t.name))) + if hasattr(t, 'installable') and (not t.portable): + write(f, 'THING_INSTALLED %s' % t.id_) if t.type_ == 'Door' and t.blocking: write(f, 'THING_DOOR_CLOSED %s' % t.id_) elif t.type_ == 'MusicPlayer':