Skip to content

Commit

Permalink
Increase chance of Skyris Leaves Variants in processors
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph T. McQuigg <[email protected]>
  • Loading branch information
JT122406 committed Sep 11, 2024
1 parent 0812f69 commit 611a5f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"input_predicate": {
"block": "biomeswevegone:skyris_leaves",
"predicate_type": "minecraft:random_block_match",
"probability": 0.12
"probability": 0.15
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
Expand All @@ -100,7 +100,7 @@
"input_predicate": {
"block": "biomeswevegone:skyris_leaves",
"predicate_type": "minecraft:random_block_match",
"probability": 0.15
"probability": 0.2
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"input_predicate": {
"block": "biomeswevegone:skyris_leaves",
"predicate_type": "minecraft:random_block_match",
"probability": 0.1
"probability": 0.15
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
Expand All @@ -61,7 +61,7 @@
"input_predicate": {
"block": "biomeswevegone:skyris_leaves",
"predicate_type": "minecraft:random_block_match",
"probability": 0.15
"probability": 0.2
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,17 @@ public class BWGStructureProcessorLists {
BWGRuleProcessors.POLISHED_ANDESITE_RANDOM_ANDESITE_GRAVEL,
BWGRuleProcessors.PODZOL_25_PERCENT_COARSE_DIRT,
BWGRuleProcessors.PODZOL_50_PERCENT_LUSH_GRASS,
BWGRuleProcessors.skyrisLeavesToGreenAppleLeaves(0.12f),
BWGRuleProcessors.skyrisLeavesToFlowering(0.15f),
BWGRuleProcessors.skyrisLeavesToGreenAppleLeaves(0.15f),
BWGRuleProcessors.skyrisLeavesToFlowering(0.2f),
new FruitBlockProcessor(BWGBlocks.GREEN_APPLE_FRUIT_BLOCK.get())
)
));

public static final ResourceKey<StructureProcessorList> SKYRIS_TOWN_CENTERS = register("skyris_town_centers", structureProcessorListHolderGetter -> new StructureProcessorList(
ImmutableList.of(
BWGRuleProcessors.POLISHED_ANDESITE_RANDOM_ANDESITE_GRAVEL,
BWGRuleProcessors.skyrisLeavesToGreenAppleLeaves(0.1f),
BWGRuleProcessors.skyrisLeavesToFlowering(0.15f),
BWGRuleProcessors.skyrisLeavesToGreenAppleLeaves(0.15f),
BWGRuleProcessors.skyrisLeavesToFlowering(0.2f),
new FruitBlockProcessor(BWGBlocks.GREEN_APPLE_FRUIT_BLOCK.get())
)
));
Expand Down

0 comments on commit 611a5f9

Please sign in to comment.