From c763eb0a4457b73c83212dacf9cc142112a75412 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 27 Jun 2024 22:26:03 +0200 Subject: [PATCH] disable using do_adjm in fake --- geometry2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geometry2.cpp b/geometry2.cpp index adbe91b6..679c3d99 100644 --- a/geometry2.cpp +++ b/geometry2.cpp @@ -536,7 +536,7 @@ transmatrix hrmap_standard::adj(cell *c, int i) { static bool first = true; if(h == h1) return T * U; - else if(gp::do_adjm) { + else if(gp::do_adjm && !fake::in()) { if(gp::gp_adj.count(make_pair(c,i))) { return T * gp::get_adj(c,i) * U; }