From f533d084f4c5c97f689c1b754a62f2075fe0e7a2 Mon Sep 17 00:00:00 2001 From: ChrissW-R1 Date: Wed, 11 May 2022 21:22:58 +0200 Subject: [PATCH] added icons for non-standard map names. --- src/model/LiveAtlasMapDefinition.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/model/LiveAtlasMapDefinition.ts b/src/model/LiveAtlasMapDefinition.ts index 7bb3862..6c17ce1 100644 --- a/src/model/LiveAtlasMapDefinition.ts +++ b/src/model/LiveAtlasMapDefinition.ts @@ -139,21 +139,23 @@ export default class LiveAtlasMapDefinition implements LiveAtlasTileLayerOptions return this.icon; } + let mapName = this.name.split(/[^a-zA-Z\d]/, 1)[0]; + switch(this.world.dimension) { case 'nether': worldType = 'nether'; - mapType = ['surface', 'nether'].includes(this.name) ? 'surface' : 'flat'; + mapType = ['surface', 'nether'].includes(mapName) ? 'surface' : 'flat'; break; case 'end': worldType = 'the_end'; - mapType = ['surface', 'the_end'].includes(this.name) ? 'surface' : 'flat'; + mapType = ['surface', 'the_end'].includes(mapName) ? 'surface' : 'flat'; break; case 'overworld': default: worldType = 'world'; - mapType = ['surface', 'flat', 'biome', 'cave'].includes(this.name) ? this.name : 'flat'; + mapType = ['surface', 'flat', 'biome', 'cave'].includes(mapName) ? this.name : 'flat'; break; }