Fixes deepslate ores having the same hardness values as their stone variants. They shouldn't be the same. Thanks to ErrorSys
This commit is contained in:
parent
805b5418db
commit
7b6c117f7a
1 changed files with 2 additions and 1 deletions
|
@ -444,7 +444,8 @@ public class TRContent {
|
|||
block = new OreBlock(FabricBlockSettings.of(Material.STONE)
|
||||
.requiresTool()
|
||||
.sounds(name.startsWith("deepslate") ? BlockSoundGroup.DEEPSLATE : BlockSoundGroup.STONE)
|
||||
.strength(2f, 2f),
|
||||
.hardness(name.startsWith("deepslate") ? 4.5f : 3f)
|
||||
.resistance(3f),
|
||||
distribution != null ? distribution.experienceDropped : experienceDroppedFallback
|
||||
);
|
||||
InitUtils.setup(block, name + "_ore");
|
||||
|
|
Loading…
Reference in a new issue