diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c51cc5bc..3220f1244 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # 2.0.3-Beta - Fix BWG Chest Boats not Saving Data +- Fix Incompatibility with Slayers Beasts # 2.0.2-Beta - Fix Colored Sand Recipes using colored sand instead of normal sand diff --git a/Common/src/main/generated/resources/data/biomeswevegone/worldgen/biome/coniferous_forest.json b/Common/src/main/generated/resources/data/biomeswevegone/worldgen/biome/coniferous_forest.json index ce8395b44..05d56a563 100644 --- a/Common/src/main/generated/resources/data/biomeswevegone/worldgen/biome/coniferous_forest.json +++ b/Common/src/main/generated/resources/data/biomeswevegone/worldgen/biome/coniferous_forest.json @@ -76,13 +76,13 @@ "minecraft:glow_lichen", "minecraft:patch_large_fern", "minecraft:flower_default", + "minecraft:patch_grass_taiga_2", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", "minecraft:patch_grass_taiga", "minecraft:patch_dead_bush", "minecraft:brown_mushroom_old_growth", "minecraft:red_mushroom_old_growth", - "minecraft:patch_grass_taiga_2", - "minecraft:brown_mushroom_taiga", - "minecraft:red_mushroom_taiga", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", "minecraft:patch_sugar_cane", diff --git a/Common/src/main/generated/resources/data/biomeswevegone/worldgen/biome/frosted_coniferous_forest.json b/Common/src/main/generated/resources/data/biomeswevegone/worldgen/biome/frosted_coniferous_forest.json index da70c3eae..f168a823e 100644 --- a/Common/src/main/generated/resources/data/biomeswevegone/worldgen/biome/frosted_coniferous_forest.json +++ b/Common/src/main/generated/resources/data/biomeswevegone/worldgen/biome/frosted_coniferous_forest.json @@ -76,13 +76,13 @@ "minecraft:glow_lichen", "minecraft:patch_large_fern", "minecraft:flower_default", + "minecraft:patch_grass_taiga_2", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", "minecraft:patch_grass_taiga", "minecraft:patch_dead_bush", "minecraft:brown_mushroom_old_growth", "minecraft:red_mushroom_old_growth", - "minecraft:patch_grass_taiga_2", - "minecraft:brown_mushroom_taiga", - "minecraft:red_mushroom_taiga", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", "minecraft:patch_sugar_cane", diff --git a/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/levelgen/biome/BWGOverworldBiomes.java b/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/levelgen/biome/BWGOverworldBiomes.java index bec1f4b08..2b8e982eb 100644 --- a/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/levelgen/biome/BWGOverworldBiomes.java +++ b/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/levelgen/biome/BWGOverworldBiomes.java @@ -405,8 +405,8 @@ protected static Biome coniferousForest(HolderGetter placedFeatur BiomeDefaultFeatures.addFerns(generationSettings); BiomeDefaultFeatures.addDefaultFlowers(generationSettings); - BiomeDefaultFeatures.addGiantTaigaVegetation(generationSettings); BiomeDefaultFeatures.addTaigaGrass(generationSettings); + BiomeDefaultFeatures.addGiantTaigaVegetation(generationSettings); BiomeDefaultFeatures.addDefaultMushrooms(generationSettings); BiomeDefaultFeatures.addDefaultExtraVegetation(generationSettings); BiomeDefaultFeatures.addRareBerryBushes(generationSettings);