From cc50fba4e24414d6ff3790620e5bb7a66c32ea26 Mon Sep 17 00:00:00 2001 From: Gaxeer <44334376+Gaxeer@users.noreply.github.com> Date: Mon, 3 Feb 2025 12:35:07 +0200 Subject: [PATCH] Update modular_bandastation/minesweeper/code/minesweeper.dm --- modular_bandastation/minesweeper/code/minesweeper.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_bandastation/minesweeper/code/minesweeper.dm b/modular_bandastation/minesweeper/code/minesweeper.dm index 17abe30a61ec8..3681a96defb8d 100644 --- a/modular_bandastation/minesweeper/code/minesweeper.dm +++ b/modular_bandastation/minesweeper/code/minesweeper.dm @@ -276,7 +276,7 @@ * * @return coordinates of opened cell as `list(x, y)` if cell was successfully opened * and no bombs are around, `null` otherwise -/* + */ /datum/computer_file/program/minesweeper/proc/open_cell(x, y) var/list/minesweeper_cell = minesweeper_matrix[x][y] if(minesweeper_cell["open"])