From a4a965b33c22e07153b69ee21d20088d4f300493 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 10 Oct 2022 22:10:47 +0700 Subject: [PATCH] Buff glass explosion resistance --- src/main/kotlin/ru/dbotthepony/mc/otm/registry/MRegistry.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MRegistry.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MRegistry.kt index 900692723..50a835bb9 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MRegistry.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MRegistry.kt @@ -170,7 +170,8 @@ object MRegistry { val INDUSTRIAL_GLASS = DecorativeBlock(MNames.INDUSTRIAL_GLASS, { color -> val properties = BlockBehaviour.Properties.of(Material.GLASS, if (color != null) color.materialColor else MaterialColor.NONE) - .strength(1.5f, 35.0f) + .destroyTime(1.5f) + .explosionResistance(40f) .requiresCorrectToolForDrops() .sound(SoundType.GLASS) .noOcclusion()