X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=cd1ce2ea8ee5e3c947e10075acb2a0e39ae64969;hb=51addf32b5a876c47325fb55756aacaea65ed0da;hp=a1c2ee641cc1dcfefd8797b284676095ab69e83b;hpb=b42a49ec09d08e8f37ea52ad6b74fb10c5c5b01d;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index a1c2ee6..cd1ce2e 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -238,6 +238,8 @@ class Game(GameBase): 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_)) 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)]: