1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

geom3:: fixed Sol, NIH and SolN embeddings being always displayed as legal

This commit is contained in:
Zeno Rogue 2023-12-27 10:58:55 +01:00
parent c5a4cc2255
commit ffda562f7c

View File

@ -90,7 +90,7 @@ EX namespace geom3 {
ans += " torus";
}
if(among(sp, seSol, seNIH, seSolN)) {
if((meuclid && !PURE) && !bt::in()) ans += " pure or bin";
if((meuclid && !PURE) || !bt::in()) ans += " pure or bin";
}
return ans;
}