From e2d2f5a4adfc72856d532f9f7a3f9ba1a70b69ba Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sat, 4 Apr 2020 14:04:47 +0200 Subject: [PATCH] Update minesweeper.dm --- code/game/machinery/computer/arcade/minesweeper.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/arcade/minesweeper.dm b/code/game/machinery/computer/arcade/minesweeper.dm index f8639e85c1..370f85b4b9 100644 --- a/code/game/machinery/computer/arcade/minesweeper.dm +++ b/code/game/machinery/computer/arcade/minesweeper.dm @@ -391,7 +391,7 @@ if(start_x < 1) starting_column -= start_x - 1 start_x = 1 - for(var/row in start to length(table)) //translate the mines locations into actual turf coordinates. + for(var/row in starting_row to length(table)) //translate the mines locations into actual turf coordinates. if(!locate(cur_y, start_x, z)) break var/cur_x = start_x