mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-09-23 19:48:42 +00:00
fixed the West Wall being not inaccessible from some lands
This commit is contained in:
@@ -703,6 +703,9 @@ EX int coastval(cell *c, eLand base) {
|
||||
if(!c->landparam) return UNKNOWN;
|
||||
return c->landparam & 255;
|
||||
}
|
||||
else if(base == laWestWall) {
|
||||
if(c->land != base) return 0;
|
||||
}
|
||||
else {
|
||||
if(c->land == laOceanWall || c->land == laCaribbean || c->land == laWhirlpool ||
|
||||
c->land == laLivefjord || c->land == laWarpSea || c->land == laKraken || c->land == laDocks || c->land == laBrownian)
|
||||
|
||||
Reference in New Issue
Block a user