From a4d7ea257bb1e1f1ac9288258939143d5e171a91 Mon Sep 17 00:00:00 2001 From: Peter Date: Tue, 20 Sep 2022 16:23:46 -0400 Subject: [PATCH] Added status to Volcano marker legend. --- modules/markers-generator.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/markers-generator.js b/modules/markers-generator.js index 3ca6b0cb..8c29fffb 100644 --- a/modules/markers-generator.js +++ b/modules/markers-generator.js @@ -165,7 +165,8 @@ window.Markers = (function () { const proper = Names.getCulture(cells.culture[cell]); const name = P(0.3) ? "Mount " + proper : Math.random() > 0.3 ? proper + " Volcano" : proper; - notes.push({id, name, legend: `Active volcano. Height: ${getFriendlyHeight(cells.p[cell])}`}); + const status = P(0.6) ? "Dormant" : Math.random() > 0.6 ? "Active" : "Erupting"; + notes.push({id, name, legend: `${status} volcano. Height: ${getFriendlyHeight(cells.p[cell])}`}); } function listHotSprings({cells}) {