1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 22:39:53 +00:00

fixed generation of 3D elliptic spaces

This commit is contained in:
Zeno Rogue 2019-10-27 00:45:24 +02:00
parent 09acbc5fb2
commit d0ef1c7578

View File

@ -896,7 +896,7 @@ EX namespace reg3 {
}; };
EX hrmap* new_map() { EX hrmap* new_map() {
if(quotient) return new hrmap_field3; if(quotient && !sphere) return new hrmap_field3;
return new hrmap_reg3; return new hrmap_reg3;
} }