1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 17:10:36 +00:00

disable using do_adjm in fake

This commit is contained in:
Zeno Rogue 2024-06-27 22:26:03 +02:00
parent 8de0bdb073
commit c763eb0a44

View File

@ -536,7 +536,7 @@ transmatrix hrmap_standard::adj(cell *c, int i) {
static bool first = true; static bool first = true;
if(h == h1) if(h == h1)
return T * U; return T * U;
else if(gp::do_adjm) { else if(gp::do_adjm && !fake::in()) {
if(gp::gp_adj.count(make_pair(c,i))) { if(gp::gp_adj.count(make_pair(c,i))) {
return T * gp::get_adj(c,i) * U; return T * gp::get_adj(c,i) * U;
} }