diff --git a/src/main/java/ru/betterend/blocks/BlockSilkMothNest.java b/src/main/java/ru/betterend/blocks/BlockSilkMothNest.java index 67adce21..a41fd6fb 100644 --- a/src/main/java/ru/betterend/blocks/BlockSilkMothNest.java +++ b/src/main/java/ru/betterend/blocks/BlockSilkMothNest.java @@ -6,6 +6,7 @@ import net.minecraft.block.BlockState; import net.minecraft.block.Material; import net.minecraft.block.ShapeContext; import net.minecraft.item.ItemPlacementContext; +import net.minecraft.sound.BlockSoundGroup; import net.minecraft.state.StateManager; import net.minecraft.state.property.BooleanProperty; import net.minecraft.state.property.DirectionProperty; @@ -25,7 +26,7 @@ public class BlockSilkMothNest extends BlockBase implements IRenderTypeable { private static final VoxelShape BOTTOM = createCuboidShape(0, 0, 0, 16, 16, 16); public BlockSilkMothNest() { - super(FabricBlockSettings.of(Material.WOOL).hardness(0.5F).resistance(0.1F).nonOpaque()); + super(FabricBlockSettings.of(Material.WOOL).hardness(0.5F).resistance(0.1F).sounds(BlockSoundGroup.WOOL).nonOpaque()); this.setDefaultState(getDefaultState().with(ACTIVE, true)); } diff --git a/src/main/resources/assets/betterend/models/block/silk_moth_nest_bottom.json b/src/main/resources/assets/betterend/models/block/silk_moth_nest_bottom.json index 16caad7b..538ec3e3 100644 --- a/src/main/resources/assets/betterend/models/block/silk_moth_nest_bottom.json +++ b/src/main/resources/assets/betterend/models/block/silk_moth_nest_bottom.json @@ -15,8 +15,8 @@ "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" }, "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, - "north": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "north" }, - "south": { "uv": [ 0, 4, 16, 16 ], "texture": "#front", "cullface": "south" }, + "north": { "uv": [ 0, 4, 16, 16 ], "texture": "#front", "cullface": "north" }, + "south": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "south" }, "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "west" }, "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "east" } }