1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 01:17:39 +00:00

bigstuff in inverse

This commit is contained in:
Zeno Rogue
2020-07-13 00:53:48 +02:00
parent cf0abe6184
commit 224a02d086
4 changed files with 18 additions and 2 deletions

View File

@@ -1375,6 +1375,7 @@ EX int wallchance(cell *c, bool deepOcean) {
/** should we generate the horocycles in the current geometry? */
EX bool horo_ok() {
if(INVERSE) return false;
return hyperbolic && !bt::in() && !arcm::in() && !kite::in() && !experimental && !hybri;
}
@@ -1421,6 +1422,7 @@ EX bool deep_ocean_at(cell *c, cell *from) {
EX bool good_for_wall(cell *c) {
if(arcm::in()) return true;
if(WDIM == 3) return true;
if(INVERSE) return true;
return pseudohept(c);
}