diff options
| author | mryouse | 2020-08-02 01:57:57 +0000 |
|---|---|---|
| committer | mryouse | 2020-08-02 01:57:57 +0000 |
| commit | 0fd069b7a577651ce9fa7cbbc6b9ccb4d3c408ed (patch) | |
| tree | 9bafcea9194a438d678f12b2efad2025eee5ec66 | |
| parent | 11fa7f71ef0d5c417d1cc20814fbff954966f329 (diff) | |
added a color for '6' -- not common, but not uncommon
| -rwxr-xr-x | sweepy.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -21,6 +21,7 @@ def generate_tiles(): tiles.append(Tile("3", "3", Ouija.COLORS["RED"], curses.A_BOLD)) tiles.append(Tile("4", "4", Ouija.COLORS["GREEN"], curses.A_BOLD)) tiles.append(Tile("5", "5", Ouija.COLORS["ORANGE"], curses.A_BOLD)) + tiles.append(Tile("6", "6", Ouija.COLORS["CYAN"], curses.A_BOLD)) tiles.append(Tile("!", "#", Ouija.COLORS["YELLOW"])) tiles.append(Tile("_", ".")) tiles.append(Tile("x", "x", Ouija.COLORS["BLACK_ON_YELLOW"])) |
