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:
parent
80f925c9ce
commit
855d2f66c3
@ -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) {
|
||||
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() {
|
||||
|
Loading…
Reference in New Issue
Block a user