1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-10 10:43:03 +00:00

fixed Lost Mountain on spheres

This commit is contained in:
Zeno Rogue
2018-04-10 08:01:39 +02:00
parent 855a236daf
commit 85d5ca04cf
2 changed files with 4 additions and 4 deletions

View File

@@ -740,7 +740,7 @@ void setLandSphere(cell *c) {
if(specialland == laCrossroads3 && c->type != 6 && c->master->fiftyval == 1)
c->wall = waBigTree;
}
if(specialland == laIvoryTower || specialland == laEndorian || specialland == laDungeon || specialland == laOcean) {
if(specialland == laIvoryTower || specialland == laEndorian || specialland == laDungeon || specialland == laOcean || specialland == laMountain) {
int d = celldist(c);
if(d <= 0)
c->land = laCrossroads4;