1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-01 02:07:57 +00:00

fixed single-land Camelot

This commit is contained in:
Zeno Rogue
2021-04-23 19:14:37 +02:00
parent 0f27c86614
commit f3b359940e
4 changed files with 5 additions and 5 deletions

View File

@@ -237,7 +237,7 @@ EX void teleportToLand(eLand l, bool make_it_safe) {
if(l == laClearing) l = laOvergrown;
if(l == laWhirlpool) l = laOcean;
if(l == laCrossroads5) l = laCrossroads2; // could not fit!
if(l == laCamelot && !(tactic::on && specialland == laCamelot))
if(l == laCamelot && !ls::single())
l = laCrossroads;
firstland = l;
safetyland = l;