1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

rulegen3:: remove faster get_parent_dir as it causes problems

This commit is contained in:
Zeno Rogue 2022-08-20 16:16:17 +02:00
parent 1c4aa3e71c
commit 97c10ff878

View File

@ -942,16 +942,6 @@ EX twalker get_parent_dir(twalker& cw) {
be_solid(c);
if(WDIM == 3) {
for(int i=0; i<c->type; i++) {
tcell *c1 = c->cmove(i);
if(c1->dist < c->dist) {
c->parent_dir = i;
return twalker(c, i);
}
}
}
auto oc = c;
if(c->dist > 0) {