1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-18 07:27:40 +00:00

fixed Elemental Planes in ls single

This commit is contained in:
Zeno Rogue
2021-04-23 20:13:10 +02:00
parent 12e864912b
commit 5bd56eea10
2 changed files with 9 additions and 1 deletions

View File

@@ -301,7 +301,7 @@ EX bool rlyehComplete() {
}
bool lchance(eLand l) {
if(tactic::on || yendor::on || racing::on || ((geometry || GOLDBERG) && specialland == laElementalWall)) return true;
if(ls::single() || racing::on || ((geometry || GOLDBERG) && specialland == laElementalWall)) return true;
if(ls::any_chaos()) return hrand(100) < 25;
return hrand(100) >= 40 * kills[elementalOf(l)] / (elementalKills()+1);
}