1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-29 00:19:04 +00:00

Irradiated Yendor Challenge (but commented off for now)

This commit is contained in:
Zeno Rogue
2019-01-17 00:45:36 +01:00
parent 0a794f5b26
commit a676424573
3 changed files with 7 additions and 1 deletions

View File

@@ -1590,6 +1590,7 @@ cdata *getHeptagonCdata(heptagon *h) {
h->cdata = new cdata(orig_cdata);
for(int& v: h->cdata->val) v = 0;
h->cdata->bits = reptilecheat ? (1 << 21) - 1 : 0;
if(yendor::on && specialland == laVariant) h->cdata->bits |= (1 << 8) | (1 << 9) | (1 << 12);
return h->cdata;
}