From 31d6a57562d3e6d07a0d0726e11360636c1e3e9a Mon Sep 17 00:00:00 2001 From: "Joseph C. Sible" Date: Sun, 12 Oct 2025 18:27:34 -0400 Subject: [PATCH] Mark Docks as a coastal land It already behaves like one, so the only effect of this change is to add the message about it being coastal to its help text. --- content.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.cpp b/content.cpp index 9c9ca7d6..c382bce8 100644 --- a/content.cpp +++ b/content.cpp @@ -1504,7 +1504,7 @@ LAND( 0x306030, "Snake Nest", laSnakeNest, ZERO, itSnake, RESERVED, NODESCYET) NATIVE(m == moHexSnake ? 2 : among(m, moRedTroll, moMiner, moSkeleton, moBomberbird) ? 1 : 0) REQ(GOLD(R90)) -LAND( 0x80FF00, "Docks", laDocks, ZERO | LF_SEA, itDock, RESERVED, NODESCYET) +LAND( 0x80FF00, "Docks", laDocks, ZERO | LF_SEA | LF_COASTAL, itDock, RESERVED, NODESCYET) NATIVE(among(m, moRatling, moPirate, moCShark, moAlbatross, moFireFairy) ? 2 : 0) REQAS(laOcean,)