mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-06 08:43:02 +00:00
whirl
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user