X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=rogue_chat_curses.py;h=eb708a249a3ddc6c4392e2349fa81d0587de7d43;hb=b72c8aea9efa8005534e6cef7e8f8fae5cf0918e;hp=7e5437fa2e1af0ee3eb5fdc899951dec49b0e916;hpb=6f5e2612e8d2b2515612e3dee6dc5ab115f0c1a3;p=plomrogue2 diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py index 7e5437f..eb708a2 100755 --- a/rogue_chat_curses.py +++ b/rogue_chat_curses.py @@ -691,14 +691,14 @@ class TUI: if t.position == self.explorer: protection = t.protection if protection == '.': - protection = 'unprotected' - info += 'THING: %s / protection: %s / %s' %\ - (t.type_, protection, self.game.thing_types[t.type_]) + protection = 'none' + info += 'THING: %s / %s' % (t.type_, + self.game.thing_types[t.type_]) if hasattr(t, 'player_char'): info += t.player_char if hasattr(t, 'name'): info += ' (%s)' % t.name - info += '\n' + info += ' / protection: %s\n' % protection if self.explorer in self.game.portals: info += 'PORTAL: ' + self.game.portals[self.explorer] + '\n' else: