mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +01:00
Le fixes
This commit is contained in:
parent
06015ee10b
commit
2f74a90afc
8 changed files with 12 additions and 8 deletions
|
@ -149,7 +149,11 @@ public record Tree (
|
|||
)), configuredFeatureId, placements.values().stream()
|
||||
.collect(Collectors.toUnmodifiableSet()),
|
||||
sapling,
|
||||
sapling.map(saplingBlock -> Registry.register(Registries.BLOCK, saplingId.get().withPrefixedPath("potted_"), Blocks.createFlowerPotBlock(saplingBlock))));
|
||||
sapling.map(saplingBlock -> {
|
||||
Block flowerPot = Registry.register(Registries.BLOCK, saplingId.get().withPrefixedPath("potted_"), Blocks.createFlowerPotBlock(saplingBlock));
|
||||
UBlocks.TRANSLUCENT_BLOCKS.add(flowerPot);
|
||||
return flowerPot;
|
||||
}));
|
||||
|
||||
if (REGISTRY.isEmpty()) {
|
||||
bootstrap();
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/flower_pot_cross",
|
||||
"textures": {
|
||||
"plant": "unicopia:block/golden_oak_sapling"
|
||||
"plant": "unicopia:item/golden_oak_sapling"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/flower_pot_cross",
|
||||
"textures": {
|
||||
"plant": "unicopia:block/green_apple_sapling"
|
||||
"plant": "unicopia:item/green_apple_sapling"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/flower_pot_cross",
|
||||
"textures": {
|
||||
"plant": "unicopia:block/mango_sapling"
|
||||
"plant": "unicopia:item/mango_sapling"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/flower_pot_cross",
|
||||
"textures": {
|
||||
"plant": "unicopia:block/palm_sapling"
|
||||
"plant": "unicopia:item/palm_sapling"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/flower_pot_cross",
|
||||
"textures": {
|
||||
"plant": "unicopia:block/sour_apple_sapling"
|
||||
"plant": "unicopia:item/sour_apple_sapling"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/flower_pot_cross",
|
||||
"textures": {
|
||||
"plant": "unicopia:block/sweet_apple_sapling"
|
||||
"plant": "unicopia:item/sweet_apple_sapling"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/flower_pot_cross",
|
||||
"textures": {
|
||||
"plant": "unicopia:block/zapling"
|
||||
"plant": "unicopia:item/zapling"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue