mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 09:00:34 +00:00
rulegen:: branches starting at other roots were not examined
This commit is contained in:
parent
b60618d28a
commit
6935aa1cf7
@ -1314,7 +1314,7 @@ void rules_iteration() {
|
||||
if(r[a] == DIR_UNKNOWN) r[a] = DIR_LEFT;
|
||||
last_live_branch = i;
|
||||
}
|
||||
if(id == 0) examine_branch(id, last_live_branch, first_live_branch);
|
||||
if(treestates[id].is_root) examine_branch(id, last_live_branch, first_live_branch);
|
||||
for(int a=last_live_branch; a<isize(r); a++)
|
||||
if(r[a] == DIR_UNKNOWN) r[a] = DIR_RIGHT;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user