1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-14 12:47:10 +00:00

hat:: disable horo and use clueless just in case

This commit is contained in:
Zeno Rogue
2023-03-24 23:19:53 +01:00
parent 9fa2ba72fe
commit fa9365466c
2 changed files with 2 additions and 0 deletions

View File

@@ -598,6 +598,7 @@ EX int celldist(cell *c) {
if(mhybrid)
return hybrid::celldistance(c, currentmap->gamestart());
if(nil && !quotient) return DISTANCE_UNKNOWN;
if(hat::in()) return clueless_celldistance(currentmap->gamestart(), c);
if(euc::in()) return celldistance(currentmap->gamestart(), c);
if(sphere || bt::in() || WDIM == 3 || cryst || sn::in() || aperiodic || closed_manifold) return celldistance(currentmap->gamestart(), c);
#if CAP_IRR