From 5ccf5c48fcea21be1f10148214bd31d7ba8b0874 Mon Sep 17 00:00:00 2001 From: Light_Quanta Date: Wed, 25 Jun 2025 01:20:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=9E=E6=BB=9A=E5=8D=93=E8=B6=8A=E7=89=A9?= =?UTF-8?q?=E5=93=81=E6=8E=A5=E5=8F=A3=E6=94=BE=E7=BD=AE=E8=A1=8C=E4=B8=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../superbwarfare/block/SuperbItemInterfaceBlock.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/com/atsuishio/superbwarfare/block/SuperbItemInterfaceBlock.java b/src/main/java/com/atsuishio/superbwarfare/block/SuperbItemInterfaceBlock.java index a8625d72c..ae90759e1 100644 --- a/src/main/java/com/atsuishio/superbwarfare/block/SuperbItemInterfaceBlock.java +++ b/src/main/java/com/atsuishio/superbwarfare/block/SuperbItemInterfaceBlock.java @@ -59,9 +59,6 @@ public class SuperbItemInterfaceBlock extends BaseEntityBlock { @Override public BlockState getStateForPlacement(@NotNull BlockPlaceContext context) { Direction direction = context.getClickedFace().getOpposite(); - if (context.getPlayer() != null && context.getPlayer().isShiftKeyDown()) { - direction = direction.getOpposite(); - } return this.defaultBlockState().setValue(FACING, direction).setValue(ENABLED, true); }