From 6039c40bc2284a85828361e453133572e22534de Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 8 Jun 2022 18:00:00 +0200 Subject: [PATCH] fixed adj_minefield_cells_full --- cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cell.cpp b/cell.cpp index 904fb3ae..9d557790 100644 --- a/cell.cpp +++ b/cell.cpp @@ -1434,7 +1434,7 @@ EX vector adj_minefield_cells_full(cell *c) { cellwalker cw1 = cw; do { res.emplace_back(adj_data{cw.at, cw.mirrored, T}); - T = T * currentmap->adj(c, cw.spin); + T = T * currentmap->adj(cw.at, cw.spin); cw += wstep; cw++; if(cw.cpeek() == c) cw++;