From ca59e464b1365a5ecb35a103167961b6c1fe4183 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 16 Mar 2020 21:33:37 +0100 Subject: [PATCH] fixed Baby Tortoise colors in tour/PTM --- landgen.cpp | 2 +- tour.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/landgen.cpp b/landgen.cpp index 8265213c..45d4e8d5 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -1802,7 +1802,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) { if(quickfind(laTortoise)) chance += 150; if((tactic::on || euclid || peace::on) && hrand(4000) < chance && !safety) { c->item = itBabyTortoise; - tortoise::babymap[c] = getBits(c) ^ tortoise::getRandomBits(); + tortoise::babymap[c] = tortoise::getb(c) ^ tortoise::getRandomBits(); } } break; diff --git a/tour.cpp b/tour.cpp index 816cd035..2ebae930 100644 --- a/tour.cpp +++ b/tour.cpp @@ -697,7 +697,7 @@ EX slide default_slides[] = { if(mode == 4) { cell *c = cwt.at->move(0); c->item = itBabyTortoise; - tortoise::babymap[c] = getBits(c) ^ tortoise::getRandomBits(); + tortoise::babymap[c] = tortoise::getb(c) ^ tortoise::getRandomBits(); } GETNEXT { if(old == laDragon) return pick(laTortoise, laTortoise, laCrossroads);