1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-20 15:40:26 +00:00

rulegen:: addstep used in one more place

This commit is contained in:
Zeno Rogue 2021-08-25 12:56:56 +02:00
parent 25dba5a13c
commit 83e69a4872

View File

@ -152,6 +152,7 @@ EX void ufindc(tcell*& c) {
EX tcell *first_tcell = nullptr; EX tcell *first_tcell = nullptr;
// sometimes the standard x+wstep returns nullptr because of unification
twalker addstep(twalker x) { twalker addstep(twalker x) {
x.cpeek(); x.cpeek();
ufind(x); ufind(x);
@ -872,12 +873,12 @@ EX set<tcell*> single_live_branch_close_to_root;
void treewalk(twalker& cw, int delta) { void treewalk(twalker& cw, int delta) {
int d = get_parent_dir(cw.at); int d = get_parent_dir(cw.at);
if(cw.spin == d) cw += wstep; if(cw.spin == d) cw = addstep(cw);
else { else {
auto cw1 = addstep(cw); auto cw1 = addstep(cw);
get_parent_dir(cw1.at); get_parent_dir(cw1.at);
ufind(cw1); ufind(cw1);
if(get_parent_dir(cw1.at) == cw1.spin) cw += wstep; if(get_parent_dir(cw1.at) == cw1.spin) cw = cw1;
} }
cw+=delta; cw+=delta;
} }