Skip to content

Commit

Permalink
more gen
Browse files Browse the repository at this point in the history
  • Loading branch information
AViewFromTheTop committed Feb 18, 2025
1 parent 2f5d86a commit bb25a27
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"half": "lower"
}
},
"weight": 3
"weight": 2
},
{
"data": {
"Name": "wilderwild:frozen_fern"
},
"weight": 2
"weight": 3
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"half": "lower"
}
},
"weight": 3
"weight": 2
},
{
"data": {
"Name": "wilderwild:frozen_short_grass"
},
"weight": 2
"weight": 3
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 5
"chance": 4
},
{
"type": "minecraft:in_square"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 5
"chance": 3
},
{
"type": "minecraft:in_square"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,12 @@ public final class WWConfiguredFeatures {
.add(WWBlocks.FROZEN_FERN.defaultBlockState(), 4)
.build();
public static final SimpleWeightedRandomList<BlockState> FROZEN_LARGE_FERN_POOL = SimpleWeightedRandomList.<BlockState>builder()
.add(WWBlocks.FROZEN_LARGE_FERN.defaultBlockState(), 3)
.add(WWBlocks.FROZEN_FERN.defaultBlockState(), 2)
.add(WWBlocks.FROZEN_LARGE_FERN.defaultBlockState(), 2)
.add(WWBlocks.FROZEN_FERN.defaultBlockState(), 3)
.build();
public static final SimpleWeightedRandomList<BlockState> FROZEN_TALL_GRASS_POOL = SimpleWeightedRandomList.<BlockState>builder()
.add(WWBlocks.FROZEN_TALL_GRASS.defaultBlockState(), 3)
.add(WWBlocks.FROZEN_SHORT_GRASS.defaultBlockState(), 2)
.add(WWBlocks.FROZEN_TALL_GRASS.defaultBlockState(), 2)
.add(WWBlocks.FROZEN_SHORT_GRASS.defaultBlockState(), 3)
.build();

public static final FrozenLibConfiguredFeature<RandomPatchConfiguration, ConfiguredFeature<RandomPatchConfiguration, ?>> PATCH_TAIGA_FROZEN_GRASS = WWFeatureUtils.register("patch_taiga_frozen_grass");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1138,14 +1138,14 @@ public static void registerPlacedFeatures(@NotNull BootstrapContext<PlacedFeatur
);

PATCH_GRASS_FROZEN_TAIGA_2.makeAndSetHolder(WWConfiguredFeatures.PATCH_TAIGA_FROZEN_GRASS.getHolder(),
RarityFilter.onAverageOnceEvery(5),
RarityFilter.onAverageOnceEvery(3),
InSquarePlacement.spread(),
PlacementUtils.HEIGHTMAP_WORLD_SURFACE,
BiomeFilter.biome()
);

PATCH_GRASS_FROZEN_TAIGA.makeAndSetHolder(WWConfiguredFeatures.PATCH_TAIGA_FROZEN_GRASS.getHolder(),
RarityFilter.onAverageOnceEvery(5),
RarityFilter.onAverageOnceEvery(4),
InSquarePlacement.spread(),
PlacementUtils.HEIGHTMAP_WORLD_SURFACE,
BiomeFilter.biome()
Expand Down

0 comments on commit bb25a27

Please sign in to comment.