Skip to content

Commit 28e4b51

Browse files
committed
trying to make the ore give exp on break, idk didn't work
1 parent 5117e44 commit 28e4b51

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/crystallized/modid/block/ModBlocks.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ public class ModBlocks {
2626
AbstractBlock.Settings.create()
2727
.strength(4f)
2828
.requiresTool()
29-
.sounds(BlockSoundGroup.NETHER_ORE));
30-
29+
.sounds(BlockSoundGroup.DEEPSLATE));
3130

3231

3332
private static Block registerBlock(String name, AbstractBlock.Settings blockSettings) {
@@ -41,7 +40,6 @@ private static void registerBlockItem(String name, Block block) {
4140
BlockItem item = new BlockItem(block, new Item.Settings().registryKey(key));
4241
Registry.register(Registries.ITEM, key, item);
4342
}
44-
4543
public static void registerModBlocks() {
4644
CrystallizedMod.LOGGER.info("Registering ModBlocks for " + CrystallizedMod.MOD_ID);
4745
ItemGroupEvents.modifyEntriesEvent(ItemGroups.BUILDING_BLOCKS).register(entries ->{

0 commit comments

Comments
 (0)