Fix wrong blast resistance of tritanium striped block

This commit is contained in:
DBotThePony 2024-01-18 23:22:31 +07:00
parent d540cbef3c
commit 26382d9601
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -229,7 +229,7 @@ object MBlocks {
.sound(SoundType.BASALT)
.requiresCorrectToolForDrops()
.explosionResistance(80f)
.strength(4f)
.destroyTime(2.5f)
) }
val TRITANIUM_STRIPED_STAIRS: Block by registry.register(MNames.TRITANIUM_STRIPED_STAIRS) { StairBlock(
@ -251,7 +251,7 @@ object MBlocks {
.sound(SoundType.BASALT)
.requiresCorrectToolForDrops()
.explosionResistance(40f)
.strength(3f)
.destroyTime(1.5f)
) }
val MULTIBLOCK_TEST by registry.register("multiblock_test") { MultiblockTestBlock() }