fixed the West Wall being not inaccessible from some lands

This commit is contained in:
Zeno Rogue
2024-04-08 00:58:34 +02:00
parent 521b452436
commit 10646933db
2 changed files with 6 additions and 2 deletions
+3
View File
@@ -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)