X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;ds=sidebyside;f=rogue_chat_curses.py;h=6bd662be7c6873b20303fa7c3474d18d2efd9a06;hb=74d69e502d300e3a9566304426bcd9960369545b;hp=fdfc2bcbfb12096dd8b36148f48b2b63454242d8;hpb=075ed2b9529e52ab8a5075d56d77e09d2191d9c7;p=plomrogue2 diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py index fdfc2bc..6bd662b 100755 --- a/rogue_chat_curses.py +++ b/rogue_chat_curses.py @@ -971,8 +971,11 @@ class TUI: return start_x = self.window_width - 10 + t_char = ' ' + if hasattr(t, 'thing_char'): + t_char = t.thing_char def draw_body_part(body_part, end_y): - safe_addstr(end_y - 4, start_x, ' ________ ') + safe_addstr(end_y - 4, start_x, ' _[ @' + t_char + ' ]_ ') safe_addstr(end_y - 3, start_x, '| |') safe_addstr(end_y - 2, start_x, '| ' + body_part[0:6] + ' |') safe_addstr(end_y - 1, start_x, '| ' + body_part[6:12] + ' |')