From ebf9a299b5d1895bd46da269bff85b621575f025 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 29 Jul 2021 14:53:23 +0200 Subject: [PATCH] altmap:: fixed Camelot for strict_tree_rules --- bigstuff.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigstuff.cpp b/bigstuff.cpp index 33f89bbb..f589317f 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -1786,7 +1786,7 @@ EX void buildCamelot(cell *c) { if(d == 10) { if(weirdhyperbolic ? hrand(100) < 50 : pseudohept(c)) buildCamelotWall(c); else { - if(!eubinary) for(int i=0; iextend_altmap(c->master->move(i)); + if(!eubinary) for(int i=0; imaster->type; i++) currentmap->extend_altmap(c->master->move(i)); int q = 0; if(weirdhyperbolic) { for(int t=0; ttype; t++) createMov(c, t); @@ -1827,7 +1827,7 @@ EX void buildCamelot(cell *c) { // roughly as many knights as table cells if(hrand(1000000) < 1000000 / expansion.get_growth() && !reptilecheat) c->monst = moKnight; - if(!eubinary) for(int i=0; iextend_altmap(c->master->move(i)); + if(!eubinary) for(int i=0; imaster->type; i++) currentmap->extend_altmap(c->master->move(i)); for(int i=0; itype; i++) if(c->move(i) && celldistAltRelative(c->move(i)) < d) c->mondir = (i+3) % 6;