diff --git a/src/main/java/com/portingdeadmods/nautec/content/blocks/BacterialAnalyzerTopBlock.java b/src/main/java/com/portingdeadmods/nautec/content/blocks/BacterialAnalyzerTopBlock.java index 9b4163e..0203100 100644 --- a/src/main/java/com/portingdeadmods/nautec/content/blocks/BacterialAnalyzerTopBlock.java +++ b/src/main/java/com/portingdeadmods/nautec/content/blocks/BacterialAnalyzerTopBlock.java @@ -59,7 +59,7 @@ public BacterialAnalyzerTopBlock(Properties properties) { @Override protected InteractionResult useWithoutItem(BlockState state, Level level, BlockPos pos, Player player, BlockHitResult hitResult) { if (level.getBlockEntity(pos.below()) instanceof BacterialAnalyzerBlockEntity be) { - player.openMenu(be, pos); + player.openMenu(be, pos.below()); return InteractionResult.SUCCESS; } return super.useWithoutItem(state, level, pos, player, hitResult);