Fixed breaking blocks with pickaxe taking too much time.
This commit is contained in:
@@ -16,6 +16,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
- Fixed incorrect autocrafting keybind prompt on macOS
|
||||
- Fixed crashing the game when a network block was removed in a bad way
|
||||
- Fixed duplication bug with Constructors and Shulker Boxes
|
||||
- Fixed breaking blocks with pickaxe taking too much time
|
||||
|
||||
### Changed
|
||||
|
||||
|
@@ -8,7 +8,7 @@ import net.minecraft.world.level.block.state.BlockBehaviour;
|
||||
import net.minecraft.world.level.material.Material;
|
||||
|
||||
public final class BlockUtils {
|
||||
public static final BlockBehaviour.Properties DEFAULT_ROCK_PROPERTIES = BlockBehaviour.Properties.of(Material.STONE).strength(1.9F).sound(SoundType.STONE);
|
||||
public static final BlockBehaviour.Properties DEFAULT_ROCK_PROPERTIES = BlockBehaviour.Properties.of(Material.STONE).strength(0.5F, 6.0F).sound(SoundType.STONE);
|
||||
public static final BlockBehaviour.Properties DEFAULT_GLASS_PROPERTIES = BlockBehaviour.Properties.of(Material.GLASS).sound(SoundType.GLASS).strength(0.35F);
|
||||
|
||||
private BlockUtils() {
|
||||
|
Reference in New Issue
Block a user