From 2630a8b7848677686a5ef7f746b179537792dc3a Mon Sep 17 00:00:00 2001 From: Marc Emmanuel Date: Tue, 17 Feb 2026 09:03:33 +0100 Subject: [PATCH] Fix marker names by removing unnecessary suffixes for Lighthouse and Waterfall --- src/modules/markers-generator.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/markers-generator.ts b/src/modules/markers-generator.ts index 049c54b3..57abdbc6 100644 --- a/src/modules/markers-generator.ts +++ b/src/modules/markers-generator.ts @@ -952,7 +952,7 @@ class MarkersModule { : Names.getCulture(cells.culture[cell]); notes.push({ id, - name: `${getAdjective(proper)} Lighthouse${name}`, + name: `${getAdjective(proper)} Lighthouse`, legend: `A lighthouse to serve as a beacon for ships in the open sea.`, }); } @@ -984,7 +984,7 @@ class MarkersModule { : Names.getCulture(cells.culture[cell]); notes.push({ id, - name: `${getAdjective(proper)} Waterfall${name}`, + name: `${getAdjective(proper)} Waterfall`, legend: `${ra(descriptions)}`, }); }