1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-25 19:07:40 +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

@@ -1961,6 +1961,7 @@ void celldrawer::check_rotations() {
if(cwt.at->land == laDungeon) side = 2;
if(cwt.at->land == laWestWall) side = 1;
if(cwt.at->land == laIvoryTower && ls::hv_structure()) side = 2;
if(cwt.at->land == laDungeon && ls::hv_structure()) side = 0;
if(models::do_rotate >= 1)
use_if_less(edgeDepth(c), edgeDepth(old), cwt.at->landparam / 10., side);
}