Skip to content

Commit fc2a43c

Browse files
committed
Slight Changes to Forces of Nature Shrine Processor for better flower variation
Signed-off-by: Joseph T. McQuigg <J.T.McQuigg12@gmail.com>
1 parent d6a4fca commit fc2a43c

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# 1.1.3-Beta
22
- Add Haunted Mansion Shrine
3+
- Slight Changes to Forces of Nature Shrine Processor for better flower variation
34

45
# 1.1.2-Beta
56
- Fix Meowth Balloon having sign and no loot

common/src/main/generated/resources/data/generations_structures/worldgen/processor_list/shrines/forces_of_nature_processor_list.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"input_predicate": {
7878
"block": "minecraft:allium",
7979
"predicate_type": "minecraft:random_block_match",
80-
"probability": 0.5
80+
"probability": 0.4
8181
},
8282
"location_predicate": {
8383
"predicate_type": "minecraft:always_true"
@@ -91,7 +91,7 @@
9191
"input_predicate": {
9292
"block": "minecraft:allium",
9393
"predicate_type": "minecraft:random_block_match",
94-
"probability": 0.5
94+
"probability": 0.375
9595
},
9696
"location_predicate": {
9797
"predicate_type": "minecraft:always_true"
@@ -105,7 +105,7 @@
105105
"input_predicate": {
106106
"block": "minecraft:allium",
107107
"predicate_type": "minecraft:random_block_match",
108-
"probability": 0.5
108+
"probability": 0.35
109109
},
110110
"location_predicate": {
111111
"predicate_type": "minecraft:always_true"

common/src/main/java/generations/gg/generations/structures/generationsstructures/processors/GenerationsProcessorLists.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ public class GenerationsProcessorLists {
143143
),
144144
new CompatRuleProcessor(
145145
ImmutableList.of(
146-
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.5f), BWGBlocks.PINK_ALLIUM.getBlock()),
147-
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.5f), BWGBlocks.WHITE_ALLIUM.getBlock()),
148-
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.5f), BWGBlocks.ALPINE_BELLFLOWER.getBlock())
146+
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.4f), BWGBlocks.PINK_ALLIUM.getBlock()),
147+
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.375f), BWGBlocks.WHITE_ALLIUM.getBlock()),
148+
new CompatProcessorRule(new RandomBlockMatchTest(Blocks.ALLIUM, 0.35f), BWGBlocks.ALPINE_BELLFLOWER.getBlock())
149149
)
150150
),
151151
new RuleProcessor(

0 commit comments

Comments
 (0)