1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-20 11:54:48 +00:00

fixed the Caribbean Yendor Chalenge

This commit is contained in:
Zeno Rogue 2021-05-30 12:15:35 +02:00
parent 80f925c9ce
commit 855d2f66c3

View File

@ -1436,7 +1436,9 @@ EX bool extend_alt(cell *c, eLand horoland, eLand overland, bool extend_in_singl
} }
EX bool can_start_horo(cell *c) { EX bool can_start_horo(cell *c) {
return ctof(c) && !have_alt(c) && horo_ok() && !randomPatternsMode && !racing::on && !yendor::on; if(yendor::on && !among(c->land, laCaribbean, laStorms))
return false;
return ctof(c) && !have_alt(c) && horo_ok() && !randomPatternsMode && !racing::on;
} }
EX bool gp_wall_test() { EX bool gp_wall_test() {