Fix biome names being stored as numbers sometimes

This commit is contained in:
Wuzzy 2023-10-25 10:24:50 +02:00
parent ec7a07da11
commit c1c8969ed9

View File

@ -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