diff --git a/src/components/AppMap.ts b/src/components/AppMap.ts index a5d730b..683c474 100644 --- a/src/components/AppMap.ts +++ b/src/components/AppMap.ts @@ -1922,14 +1922,12 @@ export default class AppMap extends mixins(MixinUtil) { this.map.switchBaseTileLayer("Depths"); } else if (obj.map_name.startsWith("Sky")) { this.map.switchBaseTileLayer("Sky"); - } else if (obj.map_type == "LargeDungeon") { - if (obj.map_name == "LargeDungeonWater") { + } else if (obj.map_name.startsWith("LargeDungeon")) { + if (obj.map_name.startsWith("LargeDungeon__LargeDungeonWater")) { this.map.switchBaseTileLayer("Sky"); - } else if (obj.map_name == "LargeDungeonFire") { - this.map.switchBaseTileLayer("Depths"); - } else if (obj.map_name == "LargeDungeonSpirit") { - this.map.switchBaseTileLayer("Depths"); - } else {// Wind and Thunder + } else if (obj.map_name.startsWith("LargeDungeon__LargeDungeonWind")) { + this.map.switchBaseTileLayer("Sky"); + } else { this.map.switchBaseTileLayer("Surface"); } } else { diff --git a/src/components/ObjectInfo.vue b/src/components/ObjectInfo.vue index 251b9db..6489c85 100644 --- a/src/components/ObjectInfo.vue +++ b/src/components/ObjectInfo.vue @@ -4,6 +4,8 @@
+ +