X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/gitweb.css?a=blobdiff_plain;ds=sidebyside;f=plomrogue%2Fgame.py;h=8bc7f74b64a2890793352b7717a9c7222831fb38;hb=6cb3a857a09ae974bf0f510dfa94fb19fba2ce31;hp=f504599f59e4146adcc96a2645c9b48583f8e672;hpb=b72c8aea9efa8005534e6cef7e8f8fae5cf0918e;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index f504599..8bc7f74 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -214,9 +214,9 @@ class Game(GameBase): quote(t.protection), t.id_), c_id) if hasattr(t, 'name'): self.io.send('THING_NAME %s %s' % (t.id_, quote(t.name)), c_id) - if hasattr(t, 'player_char'): + if hasattr(t, 'thing_char'): self.io.send('THING_CHAR %s %s' % (t.id_, - quote(t.player_char)), c_id) + quote(t.thing_char)), 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)]: