1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-11 14:56:00 +00:00

shallow water graphics and mechanics

This commit is contained in:
Zeno Rogue
2020-02-26 01:15:30 +01:00
parent 87254a551e
commit 99e64d862d
9 changed files with 37 additions and 10 deletions

View File

@@ -333,6 +333,7 @@ EX int chasmgraph(cell *c) {
if(c->wall == waChasm || c->wall == waInvisibleFloor) return 2;
if(isChasmy(c)) return 1;
if(isWateryOrBoat(c)) return 1;
if(c->wall == waShallow) return 1;
if(wmescher && c->wall == waBarrier && c->land == laOceanWall) return 1;
if(c->wall == waReptileBridge) return 1;
return 0;