zar-net / playground

Code that I wrote for the simple fun of it - games, utilities, tools, and other bits and pieces.
GNU General Public License v3.0
0 stars 0 forks source link

Color not showing in terminal in Wumpus game #1

Closed zar-net closed 3 months ago

zar-net commented 3 months ago

The Wumpus code does not display the proper colours for each of the glyphs being used.

zar-net commented 3 months ago

Changed the way in which colors are assigned to characters as follows:

                        self.stdscr.attron(curses.color_pair(1))
                        self.stdscr.addch(y, x, 'W')
                        self.stdscr.attroff(curses.color_pair(1))