Skip to content

Commit d6a4fca

Browse files
committed
Slight Haunted Mansion Adjustments
Signed-off-by: Joseph T. McQuigg <J.T.McQuigg12@gmail.com>
1 parent 895d521 commit d6a4fca

3 files changed

Lines changed: 29 additions & 1 deletion

File tree

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,32 @@
8383
"output_state": {
8484
"Name": "minecraft:gray_wool"
8585
}
86+
},
87+
{
88+
"input_predicate": {
89+
"block": "minecraft:dark_oak_planks",
90+
"predicate_type": "minecraft:random_block_match",
91+
"probability": 0.15
92+
},
93+
"location_predicate": {
94+
"predicate_type": "minecraft:always_true"
95+
},
96+
"output_state": {
97+
"Name": "minecraft:brown_terracotta"
98+
}
99+
},
100+
{
101+
"input_predicate": {
102+
"block": "minecraft:dark_oak_planks",
103+
"predicate_type": "minecraft:random_block_match",
104+
"probability": 0.1
105+
},
106+
"location_predicate": {
107+
"predicate_type": "minecraft:always_true"
108+
},
109+
"output_state": {
110+
"Name": "minecraft:black_terracotta"
111+
}
86112
}
87113
]
88114
},

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,9 @@ public class GenerationsProcessorLists {
227227
new ProcessorRule(new RandomBlockMatchTest(Blocks.DARK_OAK_SLAB, 0.02f), AlwaysTrueTest.INSTANCE, Blocks.AIR.defaultBlockState()),
228228
new ProcessorRule(new RandomBlockMatchTest(Blocks.STONE_BRICKS, 0.25f), AlwaysTrueTest.INSTANCE, Blocks.MOSSY_STONE_BRICKS.defaultBlockState()),
229229
new ProcessorRule(new RandomBlockMatchTest(Blocks.GRAY_CONCRETE, 0.25f), AlwaysTrueTest.INSTANCE, Blocks.GRAY_CONCRETE_POWDER.defaultBlockState()),
230-
new ProcessorRule(new RandomBlockMatchTest(Blocks.GRAY_CONCRETE, 0.25f), AlwaysTrueTest.INSTANCE, Blocks.GRAY_WOOL.defaultBlockState())
230+
new ProcessorRule(new RandomBlockMatchTest(Blocks.GRAY_CONCRETE, 0.25f), AlwaysTrueTest.INSTANCE, Blocks.GRAY_WOOL.defaultBlockState()),
231+
new ProcessorRule(new RandomBlockMatchTest(Blocks.DARK_OAK_PLANKS, 0.15f), AlwaysTrueTest.INSTANCE, Blocks.BROWN_TERRACOTTA.defaultBlockState()),
232+
new ProcessorRule(new RandomBlockMatchTest(Blocks.DARK_OAK_PLANKS, 0.1f), AlwaysTrueTest.INSTANCE, Blocks.BLACK_TERRACOTTA.defaultBlockState())
231233
)
232234
),
233235
new CompatRuleProcessor(
Binary file not shown.

0 commit comments

Comments
 (0)