1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-06 08:43:02 +00:00
This commit is contained in:
Zeno Rogue
2018-04-03 23:39:18 +02:00
parent 857c8c41cb
commit 22a92059b6
18 changed files with 217 additions and 50 deletions

View File

@@ -3055,7 +3055,10 @@ namespace windmap {
cell *c = samples[k];
neighbors.emplace_back();
auto &v = neighbors.back();
for(int l=0; l<c->type; l++) v.push_back(getId(createMov(c, l)));
if(whirl::whirl)
for(int l=0; l<S7; l++) v.push_back(getId(createStep(c->master, l)->c7));
else
for(int l=0; l<c->type; l++) v.push_back(getId(createMov(c, l)));
}
int N = size(samples);