1
0
mirror of https://github.com/TechnoVisionDev/Forge-Modding-Tutorial-1.16 synced 2024-10-27 20:34:04 +00:00

Fix error in code

This commit is contained in:
TechnoVisionDev 2020-04-29 20:42:59 -07:00
parent 45421184b7
commit c4071e3b4f

View File

@ -11,8 +11,7 @@ public class RubyBlock extends Block {
super(Block.Properties.create(Material.IRON) super(Block.Properties.create(Material.IRON)
.hardnessAndResistance(5.0f, 6.0f) .hardnessAndResistance(5.0f, 6.0f)
.sound(SoundType.METAL) .sound(SoundType.METAL)
.harvestLevel(3) //1 - wood, 2 - stone, 3 - iron, 4 - diamond .harvestLevel(2)
.harvestTool(ToolType.PICKAXE) .harvestTool(ToolType.PICKAXE));
);
} }
} }