solved little error

This commit is contained in:
Jonas Weinz 2021-06-17 19:09:48 +02:00
parent 3a034329ee
commit 786d773063

View File

@ -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()