From 0122ca2e4f411dd97c5af3eb931cb168628da2fc Mon Sep 17 00:00:00 2001 From: Jonas Weinz Date: Thu, 24 Jun 2021 17:15:56 +0200 Subject: [PATCH] another little fix --- server/crossword.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/crossword.py b/server/crossword.py index 46ef326..e168d07 100644 --- a/server/crossword.py +++ b/server/crossword.py @@ -242,6 +242,7 @@ class Grid(object): 'y': ly, 'revealed': self._grid[ly][lx].get_content() }) + self._grid[ly][lx].reveal() return grid_update + solution_updates def user_input(self, x: int, y: int, letter: str) -> list: