1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-17 19:48:06 +00:00

product:: fixed windmap crash on Goldberg

This commit is contained in:
Zeno Rogue
2019-08-18 21:39:15 +02:00
parent d27f628527
commit 31baf32f50
2 changed files with 7 additions and 2 deletions

View File

@@ -3389,7 +3389,7 @@ EX namespace windmap {
// cw.spin = 0;
neighbors.emplace_back();
auto &v = neighbors.back();
if(NONSTDVAR && !sphere && !archimedean)
if(NONSTDVAR && !sphere && !archimedean && !prod)
for(int l=0; l<S7; l++) {
v.push_back(getId(cw + cth + l + wstep + cth));
}