diff --git a/common/src/main/java/io/github/gregtechintergalactical/gtcore/blockentity/BlockEntityMassStorage.java b/common/src/main/java/io/github/gregtechintergalactical/gtcore/blockentity/BlockEntityMassStorage.java index a559cb7..447fe64 100644 --- a/common/src/main/java/io/github/gregtechintergalactical/gtcore/blockentity/BlockEntityMassStorage.java +++ b/common/src/main/java/io/github/gregtechintergalactical/gtcore/blockentity/BlockEntityMassStorage.java @@ -180,7 +180,6 @@ public InteractionResult onInteractServer(BlockState state, Level world, BlockPo } } if (sucess) { - world.playSound(null, this.getBlockPos(), SoundEvents.ITEM_PICKUP, SoundSource.PLAYERS, 1.0F, 1.0F); return InteractionResult.SUCCESS; } } @@ -210,7 +209,7 @@ public InteractionResult onInteractServer(BlockState state, Level world, BlockPo } handler.extractItem(0, extract, false); - world.playSound(null, this.getBlockPos(), SoundEvents.UI_BUTTON_CLICK, SoundSource.PLAYERS, 1.0F, 1.0F); + world.playSound(null, this.getBlockPos(), SoundEvents.ITEM_PICKUP, SoundSource.PLAYERS, 1.0F, 1.0F); return InteractionResult.SUCCESS; } return InteractionResult.CONSUME;