X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/move_up?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=fbfec6e6c5981687e4ba24c41930a82ada1c1a7d;hb=b011e37d62013a92db46b89633ba7217aff98998;hp=7d4103da3d793078d65554607a259b15ba31b7f1;hpb=2bc91772ca3d5056eb5a252869d8dff33c586da5;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index 7d4103d..fbfec6e 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -241,7 +241,7 @@ class Game(GameBase): 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)]: