fixed freezes on VirtualRebase in Nil portal spaces

This commit is contained in:
Zeno Rogue 2022-04-16 13:59:03 +02:00
parent d3fa8a6c2a
commit f86670ec19
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ void virtualRebase(cell*& base, T& at, const U& check) {
if(nil) {
hyperpoint h = check(at);
auto step = [&] (int i) {
at = currentmap->iadj(base, i) * at;
at = currentmap->adj(base, (i+S7/2) % S7) * at;
base = base->cmove(i);
h = check(at);
};