Skip to content

Commit

Permalink
Added additional entries for missing mapping conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
Forstride committed Nov 25, 2023
1 parent 12149e5 commit 61ce884
Showing 1 changed file with 34 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,44 @@ public static void onMissingMapping(MissingMappingsEvent event)
// Mud
.remap("mud", Blocks.MUD)
.remap("mud_bricks", Blocks.MUD_BRICKS)
.remap("mud_brick_block", Blocks.MUD_BRICKS)
.remap("mud_brick_stairs", Blocks.MUD_BRICK_STAIRS)
.remap("mud_brick_slab", Blocks.MUD_BRICK_SLAB)
.remap("mud_brick_wall", Blocks.MUD_BRICK_WALL)
// Misc
.remap("loamy_grass_block", Blocks.GRASS_BLOCK)
.remap("loamy_dirt", Blocks.DIRT)
.remap("coarse_loamy_dirt", Blocks.COARSE_DIRT)
.remap("loamy_grass_path", Blocks.DIRT_PATH)
.remap("loamy_farmland", Blocks.FARMLAND)
.remap("silty_grass_block", Blocks.GRASS_BLOCK)
.remap("silty_dirt", Blocks.DIRT)
.remap("coarse_silty_dirt", Blocks.COARSE_DIRT)
.remap("silty_grass_path", Blocks.DIRT_PATH)
.remap("silty_farmland", Blocks.FARMLAND)
.remap("sandy_grass_block", Blocks.GRASS_BLOCK)
.remap("sandy_dirt", Blocks.DIRT)
.remap("coarse_sandy_dirt", Blocks.COARSE_DIRT)
.remap("sandy_grass_path", Blocks.DIRT_PATH)
.remap("sandy_farmland", Blocks.FARMLAND)
.remap("overgrown_black_sand", BOPBlocks.MOSSY_BLACK_SAND)
.remap("dried_sand", BOPBlocks.DRIED_SALT)
.remap("ash_block", Blocks.BASALT)
.remap("rooted_sand", Blocks.SAND)
.remap("root", Blocks.HANGING_ROOTS)
.remap("nether_sprout", BOPBlocks.SPROUT)
.remap("tall_cattail", BOPBlocks.CATTAIL)
.remap("ivy", BOPBlocks.WILLOW_VINE)
.remap("short_grass", Blocks.GRASS)
.remap("thorn", Blocks.DEAD_BUSH)
.remap("deathbloom", Blocks.WITHER_ROSE)
.remap("devilweed", BOPBlocks.SPROUT)
.remap("flowering_sapling", BOPBlocks.FLOWERING_OAK_SAPLING)
.remap("flowering_leaves", BOPBlocks.FLOWERING_OAK_LEAVES)
.remap("nether_crystal_block", BOPBlocks.ROSE_QUARTZ_BLOCK)
.remap("nether_crystal", BOPBlocks.ROSE_QUARTZ_CLUSTER)
.remap("tall_wheat", BOPBlocks.BARLEY)
.remap("potted_clover", Blocks.FLOWER_POT)
.run(event);

Remapper.create(Registries.ITEM)
Expand All @@ -100,11 +128,13 @@ public static void onMissingMapping(MissingMappingsEvent event)
.remap("chaparral", BOPBiomes.ROCKY_SHRUBLAND)
.remap("cherry_blossom_grove", Biomes.CHERRY_GROVE)
.remap("coniferous_lakes", BOPBiomes.CONIFEROUS_FOREST)
.remap("dead_swamp", Biomes.SWAMP)
.remap("deep_bayou", BOPBiomes.BAYOU)
.remap("dense_marsh", BOPBiomes.MARSH)
.remap("dense_woodland", BOPBiomes.OLD_GROWTH_WOODLAND)
.remap("dry_boneyard", BOPBiomes.DRYLAND)
.remap("dry_plains", BOPBiomes.SCRUBLAND)
.remap("dry_steppe", BOPBiomes.DRYLAND)
.remap("dunes", BOPBiomes.DUNE_BEACH)
.remap("flower_meadow", BOPBiomes.FIELD)
.remap("fungal_field", BOPBiomes.FUNGAL_JUNGLE)
Expand All @@ -118,8 +148,9 @@ public static void onMissingMapping(MissingMappingsEvent event)
.remap("grove_lakes", BOPBiomes.MEDITERRANEAN_FOREST)
.remap("highland_crag", BOPBiomes.CRAG)
.remap("highland_moor", BOPBiomes.MOOR)
.remap("infernal_ashlands", BOPBiomes.ERUPTING_INFERNO)
.remap("lavender_forest", BOPBiomes.JACARANDA_FOREST)
.remap("lush_grassland", BOPBiomes.GRASSLAND)
.remap("lush_grassland", Biomes.SPARSE_JUNGLE)
.remap("lush_swamp", Biomes.SWAMP)
.remap("mangrove", Biomes.MANGROVE_SWAMP)
.remap("meadow", BOPBiomes.FIELD)
Expand All @@ -134,13 +165,15 @@ public static void onMissingMapping(MissingMappingsEvent event)
.remap("outback", BOPBiomes.LUSH_DESERT)
.remap("overgrown_cliffs", BOPBiomes.ROCKY_RAINFOREST)
.remap("poppy_field", BOPBiomes.LUSH_SAVANNA)
.remap("rainbow_hills", BOPBiomes.AURORAL_GARDEN)
.remap("rainbow_valley", BOPBiomes.AURORAL_GARDEN)
.remap("rainforest_cliffs", BOPBiomes.ROCKY_RAINFOREST)
.remap("rainforest_floodplain", BOPBiomes.FLOODPLAIN)
.remap("redwood_forest_edge", BOPBiomes.REDWOOD_FOREST)
.remap("redwood_hills", BOPBiomes.REDWOOD_FOREST)
.remap("seasonal_orchard", BOPBiomes.ASPEN_FOREST)
.remap("seasonal_pumpkin_patch", BOPBiomes.PUMPKIN_PATCH)
.remap("shadowlands", BOPBiomes.WITHERED_ABYSS)
.remap("shield", BOPBiomes.CONIFEROUS_FOREST)
.remap("shroomy_wetland", BOPBiomes.WETLAND)
.remap("shrubland_hills", BOPBiomes.ROCKY_SHRUBLAND)
Expand Down

0 comments on commit 61ce884

Please sign in to comment.