Skip to content

Commit

Permalink
bugfix for cells that are revealed after being previously marked wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisparker committed Apr 21, 2021
1 parent df1ae2d commit a7377ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cursewords/cursewords.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def compile_cell(self, position):
if cell.circled:
value = value.translate(chars.encircle)

if cell.marked_wrong:
if cell.marked_wrong and not cell.revealed:
value = self.term.red(value.lower())
else:
value = self.term.bold(value)
Expand Down

0 comments on commit a7377ba

Please sign in to comment.