Skip to content

Commit

Permalink
fix: No more groves underwater (#1016)
Browse files Browse the repository at this point in the history
* No more Groves UnderWater #980

Closes #980
  • Loading branch information
Eqis-Edu authored Dec 21, 2023
1 parent ad4b149 commit 9a2ef81
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "forge:add_features",
"biomes": "#minecraft:is_overworld",
"biomes": "#minecraft:stronghold_biased_to",
"features": "occultism:grove_underground",
"step": "underground_structures"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "forge:add_features",
"biomes": "#minecraft:is_overworld",
"biomes": "#minecraft:stronghold_biased_to",
"features": "occultism:tree_otherworld",
"step": "vegetal_decoration"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "forge:add_features",
"biomes": "#minecraft:is_overworld",
"biomes": "#minecraft:stronghold_biased_to",
"features": "occultism:tree_otherworld_natural",
"step": "vegetal_decoration"
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ public static void bootstrap(BootstapContext<BiomeModifier> context) {
GenerationStep.Decoration.UNDERGROUND_ORES));

context.register(ADD_TREE_OTHERWORLD_NATURAL, new ForgeBiomeModifiers.AddFeaturesBiomeModifier(
biomes.getOrThrow(BiomeTags.IS_OVERWORLD),
biomes.getOrThrow(BiomeTags.STRONGHOLD_BIASED_TO),
HolderSet.direct(placedFeatures.getOrThrow(PlacedFeatures.TREE_OTHERWORLD_NATURAL)),
GenerationStep.Decoration.VEGETAL_DECORATION));

context.register(ADD_TREE_OTHERWORLD, new ForgeBiomeModifiers.AddFeaturesBiomeModifier(
biomes.getOrThrow(BiomeTags.IS_OVERWORLD),
biomes.getOrThrow(BiomeTags.STRONGHOLD_BIASED_TO),
HolderSet.direct(placedFeatures.getOrThrow(PlacedFeatures.TREE_OTHERWORLD)),
GenerationStep.Decoration.VEGETAL_DECORATION));

context.register(ADD_GROVE_UNDERGROUND, new ForgeBiomeModifiers.AddFeaturesBiomeModifier(
biomes.getOrThrow(BiomeTags.IS_OVERWORLD),
biomes.getOrThrow(BiomeTags.STRONGHOLD_BIASED_TO),
HolderSet.direct(placedFeatures.getOrThrow(PlacedFeatures.GROVE_UNDERGROUND)),
GenerationStep.Decoration.UNDERGROUND_STRUCTURES));
}
Expand Down

0 comments on commit 9a2ef81

Please sign in to comment.