Skip to content

Commit

Permalink
Slight Changes to Forces of Nature Shrine Processor for better flower…
Browse files Browse the repository at this point in the history
… variation

Signed-off-by: Joseph T. McQuigg <[email protected]>
  • Loading branch information
JT122406 committed Dec 1, 2024
1 parent d6a4fca commit fc2a43c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 1.1.3-Beta
- Add Haunted Mansion Shrine
- Slight Changes to Forces of Nature Shrine Processor for better flower variation

# 1.1.2-Beta
- Fix Meowth Balloon having sign and no loot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"input_predicate": {
"block": "minecraft:allium",
"predicate_type": "minecraft:random_block_match",
"probability": 0.5
"probability": 0.4
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
Expand All @@ -91,7 +91,7 @@
"input_predicate": {
"block": "minecraft:allium",
"predicate_type": "minecraft:random_block_match",
"probability": 0.5
"probability": 0.375
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
Expand All @@ -105,7 +105,7 @@
"input_predicate": {
"block": "minecraft:allium",
"predicate_type": "minecraft:random_block_match",
"probability": 0.5
"probability": 0.35
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ public class GenerationsProcessorLists {
),
new CompatRuleProcessor(
ImmutableList.of(
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.5f), BWGBlocks.PINK_ALLIUM.getBlock()),
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.5f), BWGBlocks.WHITE_ALLIUM.getBlock()),
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.5f), BWGBlocks.ALPINE_BELLFLOWER.getBlock())
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.4f), BWGBlocks.PINK_ALLIUM.getBlock()),
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.375f), BWGBlocks.WHITE_ALLIUM.getBlock()),
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.35f), BWGBlocks.ALPINE_BELLFLOWER.getBlock())
)
),
new RuleProcessor(
Expand Down

0 comments on commit fc2a43c

Please sign in to comment.