mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-05-17 22:54:08 +00:00
dont generate horos in hrmap_h3
This commit is contained in:
parent
ae0425038b
commit
a439b16602
@ -1371,6 +1371,7 @@ EX int wallchance(cell *c, bool deepOcean) {
|
|||||||
EX bool horo_ok() {
|
EX bool horo_ok() {
|
||||||
if(INVERSE) return false;
|
if(INVERSE) return false;
|
||||||
if(currentmap->strict_tree_rules()) return true;
|
if(currentmap->strict_tree_rules()) return true;
|
||||||
|
if(reg3::in_hrmap_h3() && !PURE) return false;
|
||||||
return hyperbolic && !bt::in() && !arcm::in() && !kite::in() && !experimental && !hybri && !arb::in() && !quotient;
|
return hyperbolic && !bt::in() && !arcm::in() && !kite::in() && !experimental && !hybri && !arb::in() && !quotient;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
4
reg3.cpp
4
reg3.cpp
@ -2485,6 +2485,10 @@ hrmap_h3* hypmap() {
|
|||||||
return ((hrmap_h3*) currentmap);
|
return ((hrmap_h3*) currentmap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EX bool in_hrmap_h3() {
|
||||||
|
return dynamic_cast<hrmap_h3*> (currentmap);
|
||||||
|
}
|
||||||
|
|
||||||
EX int quotient_count() {
|
EX int quotient_count() {
|
||||||
return isize(hypmap()->quotient_map->allh);
|
return isize(hypmap()->quotient_map->allh);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user