From 786d7730636c1f4c4e38bb51c42d87d0b98efd41 Mon Sep 17 00:00:00 2001 From: Jonas Weinz Date: Thu, 17 Jun 2021 19:09:48 +0200 Subject: [PATCH] solved little error --- server/crossword.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/crossword.py b/server/crossword.py index 754be7e..53783ab 100644 --- a/server/crossword.py +++ b/server/crossword.py @@ -204,7 +204,7 @@ class Grid(object): for i, cell in enumerate(cells_to_reveal): status_update.append({ 'x': x, - 'y': y + i, + 'y': y_start + i, 'revealed': cell.get_content() }) cell.reveal()