1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-14 13:57:38 +00:00

changes:: fixed Galapagos

This commit is contained in:
Zeno Rogue
2020-03-02 17:53:13 +01:00
parent a33c4b8e50
commit 9ded3f8c7c
3 changed files with 4 additions and 2 deletions

View File

@@ -1035,7 +1035,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) {
}
if(!c->monst && !tactic::on && !racing::on && !yendor::on && !randomPatternsMode && !peace::on && !euclid && hrand(4000) < 10 && !safety) {
c->item = itBabyTortoise;
tortoise::babymap[c] = getBits(c) ^ tortoise::getRandomBits();
tortoise::babymap[c] = tortoise::getb(c) ^ tortoise::getRandomBits();
}
}
break;