mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-18 16:07:59 +01:00
Fix #519
This commit is contained in:
parent
358f832cab
commit
f4766b08de
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ public record Tree (
|
||||||
|
|
||||||
public Tree build() {
|
public Tree build() {
|
||||||
RegistryKey<ConfiguredFeature<?, ?>> configuredFeatureId = RegistryKey.of(RegistryKeys.CONFIGURED_FEATURE, id);
|
RegistryKey<ConfiguredFeature<?, ?>> configuredFeatureId = RegistryKey.of(RegistryKeys.CONFIGURED_FEATURE, id);
|
||||||
Optional<Block> sapling = saplingId.map(id -> UBlocks.register(id, saplingConstructor.apply(new SaplingGenerator(id.toString(), Optional.of(configuredFeatureId), Optional.empty(), Optional.empty()), FabricBlockSettings.copy(Blocks.OAK_SAPLING)), ItemGroups.NATURAL));
|
Optional<Block> sapling = saplingId.map(id -> UBlocks.register(id, saplingConstructor.apply(new SaplingGenerator(id.toString(), Optional.empty(), Optional.of(configuredFeatureId), Optional.empty()), FabricBlockSettings.copy(Blocks.OAK_SAPLING)), ItemGroups.NATURAL));
|
||||||
Tree tree = new Tree(id, configParameters.apply(new TreeFeatureConfig.Builder(
|
Tree tree = new Tree(id, configParameters.apply(new TreeFeatureConfig.Builder(
|
||||||
BlockStateProvider.of(logType),
|
BlockStateProvider.of(logType),
|
||||||
trunkPlacer,
|
trunkPlacer,
|
||||||
|
|
Loading…
Reference in a new issue