From c1c8969ed984b400577b486b71f7ba409600ae78 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 25 Oct 2023 10:24:50 +0200 Subject: [PATCH] Fix biome names being stored as numbers sometimes --- mibpov.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mibpov.js b/mibpov.js index 5dc7ce0..a672904 100644 --- a/mibpov.js +++ b/mibpov.js @@ -258,7 +258,7 @@ function getBiomeByID(id) { // Returns a new biome name for displaying function generateBiomeName(id) { - return +id; + return String(id); } // Converts a biome point to a point object to be passed to the Voronoi API