From ed4f018b34672572e932139d0769fef25c15fbef Mon Sep 17 00:00:00 2001 From: booky10 Date: Mon, 12 Aug 2024 16:44:09 +0200 Subject: [PATCH] Fix dimension type mappings --- mappings/world/dimension_type_mappings.json | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/mappings/world/dimension_type_mappings.json b/mappings/world/dimension_type_mappings.json index 57a6751c8d..4c12229166 100644 --- a/mappings/world/dimension_type_mappings.json +++ b/mappings/world/dimension_type_mappings.json @@ -1,19 +1,19 @@ { "V_1_19": { - "minecraft:overworld": 0, - "minecraft:the_nether": 1, - "minecraft:the_end": 2, - "minecraft:overworld_caves": 3 + "overworld": 0, + "the_nether": 1, + "the_end": 2, + "overworld_caves": 3 }, "V_1_16": { - "minecraft:overworld": 0, - "minecraft:overworld_caves": 1, - "minecraft:the_nether": 2, - "minecraft:the_end": 3 + "overworld": 0, + "overworld_caves": 1, + "the_nether": 2, + "the_end": 3 }, "V_1_7_10": { - "minecraft:overworld": 0, - "minecraft:the_nether": -1, - "minecraft:the_end": 1 + "overworld": 0, + "the_nether": -1, + "the_end": 1 } }