From beebaa0e9d2214ec03b407d94dee9afff4d12970 Mon Sep 17 00:00:00 2001 From: Voidsong Dragonfly Date: Sat, 22 Jun 2024 01:17:25 -0400 Subject: [PATCH] Remove errant println --- .../common/blocks/metal/MetalLadderBlock.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/blusunrize/immersiveengineering/common/blocks/metal/MetalLadderBlock.java b/src/main/java/blusunrize/immersiveengineering/common/blocks/metal/MetalLadderBlock.java index cd0b4ab7a8..b5433c3413 100644 --- a/src/main/java/blusunrize/immersiveengineering/common/blocks/metal/MetalLadderBlock.java +++ b/src/main/java/blusunrize/immersiveengineering/common/blocks/metal/MetalLadderBlock.java @@ -131,7 +131,6 @@ public InteractionResult useHammer(BlockState state, Level world, BlockPos pos, if (player==null) return InteractionResult.FAIL; if(type!=CoverType.NONE&&player.isShiftKeyDown()) { - System.out.println(state.getValue(IEProperties.ACTIVE)); boolean b = world.setBlockAndUpdate(pos, state.setValue(IEProperties.ACTIVE, !state.getValue(IEProperties.ACTIVE))); if(b) return InteractionResult.SUCCESS;