1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-31 01:37:57 +00:00

ls:: fixed hole in H/V Ivory Tower (still a hole in Dungeon but not available anyway)

This commit is contained in:
Zeno Rogue
2023-09-19 07:51:13 +02:00
parent ec4b02d754
commit 6db4adb91c
3 changed files with 28 additions and 15 deletions

View File

@@ -579,6 +579,8 @@ EX int coastvalEdge(cell *c) { return coastval(c, laIvoryTower); }
EX int gravityLevel(cell *c) {
if(c->land == laIvoryTower && ls::hv_structure())
return celldistAlt(c);
if(c->land == laDungeon && ls::hv_structure())
return -celldistAlt(c);
if(c->land == laIvoryTower || c->land == laEndorian)
return coastval(c, laIvoryTower);
if(c->land == laDungeon)