From 754e774bcf46fbdf088f091bafbf2ea9b4a2a51f Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 11 Jul 2023 17:35:54 +0200 Subject: [PATCH] in adj_minefield_cells_full, change forCellIdEx to forCellIdCM --- cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cell.cpp b/cell.cpp index fc803a87..40960de5 100644 --- a/cell.cpp +++ b/cell.cpp @@ -1632,7 +1632,7 @@ EX vector adj_minefield_cells_full(cell *c) { if(hdist(h, T * h2) < 1e-6) shares = true; if(shares) res.emplace_back(adj_data{c1, det(T) < 0, T}); } - if(shares || c == c1) forCellIdEx(c2, i, c1) { + if(shares || c == c1) forCellIdCM(c2, i, c1) { if(cl.listed(c2)) continue; cl.add(c2); M.push_back(T * currentmap->adj(c1, i));