mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-30 03:50:34 +00:00
fixed Baby Tortoise colors in tour/PTM
This commit is contained in:
parent
b9a1ddbde9
commit
ca59e464b1
@ -1802,7 +1802,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) {
|
|||||||
if(quickfind(laTortoise)) chance += 150;
|
if(quickfind(laTortoise)) chance += 150;
|
||||||
if((tactic::on || euclid || peace::on) && hrand(4000) < chance && !safety) {
|
if((tactic::on || euclid || peace::on) && hrand(4000) < chance && !safety) {
|
||||||
c->item = itBabyTortoise;
|
c->item = itBabyTortoise;
|
||||||
tortoise::babymap[c] = getBits(c) ^ tortoise::getRandomBits();
|
tortoise::babymap[c] = tortoise::getb(c) ^ tortoise::getRandomBits();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
2
tour.cpp
2
tour.cpp
@ -697,7 +697,7 @@ EX slide default_slides[] = {
|
|||||||
if(mode == 4) {
|
if(mode == 4) {
|
||||||
cell *c = cwt.at->move(0);
|
cell *c = cwt.at->move(0);
|
||||||
c->item = itBabyTortoise;
|
c->item = itBabyTortoise;
|
||||||
tortoise::babymap[c] = getBits(c) ^ tortoise::getRandomBits();
|
tortoise::babymap[c] = tortoise::getb(c) ^ tortoise::getRandomBits();
|
||||||
}
|
}
|
||||||
GETNEXT {
|
GETNEXT {
|
||||||
if(old == laDragon) return pick(laTortoise, laTortoise, laCrossroads);
|
if(old == laDragon) return pick(laTortoise, laTortoise, laCrossroads);
|
||||||
|
Loading…
Reference in New Issue
Block a user