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

preparing for daily

This commit is contained in:
Zeno Rogue
2018-05-01 00:21:18 +02:00
parent 02aac914d4
commit 67ad5f2f4b
8 changed files with 64 additions and 32 deletions

View File

@@ -2333,10 +2333,16 @@ void setdist(cell *c, int d, cell *from) {
if(c->land == laWhirlpool && !tactic::on && !yendor::on) setland(c, laOcean);
if(c->land == laCamelot && !tactic::on) setland(c, laCrossroads);
if(sphere || torus) setLandSphere(c);
else if(euclid) setLandEuclid(c);
if(weirdhyperbolic) setLandWeird(c);
if(quotient) { setland(c, specialland); setLandQuotient(c); }
#if CAP_DAILY
if(!daily::on) {
#else
if(true) {
#endif
if(sphere || torus) setLandSphere(c);
else if(euclid) setLandEuclid(c);
if(weirdhyperbolic) setLandWeird(c);
if(quotient) { setland(c, specialland); setLandQuotient(c); }
}
// if(chaosmode) setland(c, getCLand(c));
}