mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-29 04:47:41 +00:00
product:: works with Euclidean
This commit is contained in:
@@ -279,8 +279,12 @@ void set_or_configure_geometry(eGeometry g) {
|
||||
#endif
|
||||
else {
|
||||
if(among(g, gProduct, gRotSpace)) {
|
||||
if(WDIM == 3 || euclid) {
|
||||
addMessage(XLAT("Only works with 2D non-Euclidean geometries"));
|
||||
if(WDIM == 3 || (g == gRotSpace && euclid)) {
|
||||
addMessage(XLAT(
|
||||
g == gRotSpace ?
|
||||
"Only works with 2D non-Euclidean geometries"
|
||||
: "Only works with 2D geometries"
|
||||
));
|
||||
return;
|
||||
}
|
||||
if(g == gRotSpace) {
|
||||
|
||||
Reference in New Issue
Block a user