From 76ce80ed30c8050f55fe24dd439236da2d197627 Mon Sep 17 00:00:00 2001 From: Light_Quanta Date: Thu, 22 May 2025 13:52:24 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=8D=E4=BD=8E=E9=93=81=E4=B8=9D=E7=BD=91?= =?UTF-8?q?=E7=88=86=E7=82=B8=E6=8A=97=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/atsuishio/superbwarfare/block/BarbedWireBlock.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/atsuishio/superbwarfare/block/BarbedWireBlock.java b/src/main/java/com/atsuishio/superbwarfare/block/BarbedWireBlock.java index 50397f3e9..4e52f3b80 100644 --- a/src/main/java/com/atsuishio/superbwarfare/block/BarbedWireBlock.java +++ b/src/main/java/com/atsuishio/superbwarfare/block/BarbedWireBlock.java @@ -35,7 +35,7 @@ public class BarbedWireBlock extends Block { public static final DirectionProperty FACING = HorizontalDirectionalBlock.FACING; public BarbedWireBlock() { - super(Properties.of().ignitedByLava().instrument(NoteBlockInstrument.BASS).sound(SoundType.WOOD).strength(10f, 20f).noCollission().speedFactor(0.01f).noOcclusion().isRedstoneConductor((bs, br, bp) -> false)); + super(Properties.of().ignitedByLava().instrument(NoteBlockInstrument.BASS).sound(SoundType.WOOD).strength(10, 2).noCollission().speedFactor(0.01f).noOcclusion().isRedstoneConductor((bs, br, bp) -> false)); this.registerDefaultState(this.stateDefinition.any().setValue(FACING, Direction.NORTH).setValue(WATERLOGGED, false)); }