mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +01:00
Fix loot table and tag loading errors
This commit is contained in:
parent
3e39556af4
commit
0f4360a896
8 changed files with 10 additions and 10 deletions
|
@ -174,7 +174,7 @@ public interface UBlocks {
|
|||
Block CARVED_CLOUD = register("carved_cloud", new OrientedCloudBlock(Settings.copy(CLOUD).hardness(0.4F).requiresTool(), false), ItemGroups.BUILDING_BLOCKS);
|
||||
Block UNSTABLE_CLOUD = register("unstable_cloud", new UnstableCloudBlock(Settings.copy(CLOUD)), ItemGroups.NATURAL);
|
||||
Block CLOUD_PILLAR = register("cloud_pillar", new CloudPillarBlock(Settings.create().mapColor(MapColor.GRAY).hardness(0.5F).resistance(0).sounds(BlockSoundGroup.WOOL)), ItemGroups.NATURAL);
|
||||
Block CLOTH_BED = register("cloth_bed", new FancyBedBlock("cloth", Settings.copy(Blocks.WHITE_BED).sounds(BlockSoundGroup.WOOL)));
|
||||
Block CLOTH_BED = register("cloth_bed", new FancyBedBlock("cloth", Settings.copy(Blocks.WHITE_BED).sounds(BlockSoundGroup.WOOD)));
|
||||
Block CLOUD_BED = register("cloud_bed", new CloudBedBlock("cloud", CLOUD.getDefaultState(), Settings.copy(Blocks.WHITE_BED).sounds(BlockSoundGroup.WOOL)));
|
||||
|
||||
private static <T extends Block> T register(String name, T item) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"textures": {
|
||||
"particle": "minecraft:block/white_wool"
|
||||
"particle": "minecraft:block/spruce_planks"
|
||||
}
|
||||
}
|
|
@ -13,14 +13,14 @@
|
|||
"type": "minecraft:item",
|
||||
"conditions": [
|
||||
{
|
||||
"block": "unicopia:white_cloud_bed",
|
||||
"block": "unicopia:cloth_bed",
|
||||
"condition": "minecraft:block_state_property",
|
||||
"properties": {
|
||||
"part": "head"
|
||||
}
|
||||
}
|
||||
],
|
||||
"name": "unicopia:white_cloud_bed"
|
||||
"name": "unicopia:cloth_bed"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
|
@ -13,14 +13,14 @@
|
|||
"type": "minecraft:item",
|
||||
"conditions": [
|
||||
{
|
||||
"block": "unicopia:orange_cloud_bed",
|
||||
"block": "unicopia:cloud_bed",
|
||||
"condition": "minecraft:block_state_property",
|
||||
"properties": {
|
||||
"part": "head"
|
||||
}
|
||||
}
|
||||
],
|
||||
"name": "unicopia:orange_cloud_bed"
|
||||
"name": "unicopia:cloud_bed"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
|
@ -4,6 +4,6 @@
|
|||
"unicopia:cloud_slab",
|
||||
"unicopia:soggy_cloud_slab",
|
||||
"unicopia:dense_cloud_slab",
|
||||
"unicopia:cloud_planks_slab"
|
||||
"unicopia:cloud_plank_slab"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
"unicopia:cloud_stairs",
|
||||
"unicopia:soggy_cloud_stairs",
|
||||
"unicopia:dense_cloud_stairs",
|
||||
"unicopia:cloud_planks_stairs"
|
||||
"unicopia:cloud_plank_stairs"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
"values": [
|
||||
"unicopia:cloud_slab",
|
||||
"unicopia:dense_cloud_slab",
|
||||
"unicopia:cloud_planks_slab"
|
||||
"unicopia:cloud_plank_slab"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
"values": [
|
||||
"unicopia:cloud_stairs",
|
||||
"unicopia:dense_cloud_stairs",
|
||||
"unicopia:cloud_planks_stairs"
|
||||
"unicopia:cloud_plank_stairs"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue