From 26382d96019438f3a84cfe8fcb6f7da995394bbf Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Thu, 18 Jan 2024 23:22:31 +0700 Subject: [PATCH] Fix wrong blast resistance of tritanium striped block --- src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlocks.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlocks.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlocks.kt index b2539b7b2..14c471d08 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlocks.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlocks.kt @@ -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() }