Skip to content

Commit

Permalink
Tweaked some values.
Browse files Browse the repository at this point in the history
  • Loading branch information
ReclipseTheOne committed Sep 29, 2024
1 parent bae8741 commit 11a19b0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type": "minecraft:ore",
"config": {
"discard_chance_on_air_exposure": 0.0,
"size": 3,
"size": 6,
"targets": [
{
"state": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type": "minecraft:ore",
"config": {
"discard_chance_on_air_exposure": 0.0,
"size": 5,
"size": 12,
"targets": [
{
"state": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"placement": [
{
"type": "minecraft:count",
"count": 8
"count": 40
},
{
"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:count",
"count": 4
"count": 20
},
{
"type": "minecraft:in_square"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public WorldGenProvider(PackOutput output, CompletableFuture<HolderLookup.Provid
OreConfiguration.target(SAND_REPLACEABLES, NTBlocks.PRISMARINE_SAND.get().defaultBlockState())
);

context.register(PRISMARINE_SAND_BEACH_KEY, new ConfiguredFeature<>(Feature.ORE, new OreConfiguration(prismarine_sand_config, 3)));
context.register(PRISMARINE_SAND_OCEAN_KEY, new ConfiguredFeature<>(Feature.ORE, new OreConfiguration(prismarine_sand_config, 5)));
context.register(PRISMARINE_SAND_BEACH_KEY, new ConfiguredFeature<>(Feature.ORE, new OreConfiguration(prismarine_sand_config, 6)));
context.register(PRISMARINE_SAND_OCEAN_KEY, new ConfiguredFeature<>(Feature.ORE, new OreConfiguration(prismarine_sand_config, 12)));

LOGGER.info("Registered Prismarine Sand Generation as a configured feature.");
})
Expand All @@ -67,7 +67,7 @@ public WorldGenProvider(PackOutput output, CompletableFuture<HolderLookup.Provid

context.register(PRISMARINE_SAND_BEACH_PLACE_KEY, new PlacedFeature(configuredFeatures.getOrThrow(PRISMARINE_SAND_BEACH_KEY),
List.of(
CountPlacement.of(8),
CountPlacement.of(40),
InSquarePlacement.spread(),
HeightRangePlacement.uniform(
VerticalAnchor.absolute(50),
Expand All @@ -77,7 +77,7 @@ public WorldGenProvider(PackOutput output, CompletableFuture<HolderLookup.Provid
));
context.register(PRISMARINE_SAND_OCEAN_PLACE_KEY, new PlacedFeature(configuredFeatures.getOrThrow(PRISMARINE_SAND_OCEAN_KEY),
List.of(
CountPlacement.of(4),
CountPlacement.of(20),
InSquarePlacement.spread(),
HeightRangePlacement.uniform(
VerticalAnchor.absolute(40),
Expand All @@ -87,6 +87,5 @@ public WorldGenProvider(PackOutput output, CompletableFuture<HolderLookup.Provid
));

LOGGER.info("Registered Prismarine Sand Generation as a placed feature.");
})
;
});
}

0 comments on commit 11a19b0

Please sign in to comment.