diff --git a/gradle.properties b/gradle.properties index 480b58bd8..b011bff3d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,6 @@ mod_version=1.8.3 mc_version=1.19.2 forge_version=43.2.14 - # optional dependencies jei_version=11.4.0.285 curios_version=5.1.1.0 diff --git a/src/main/java/com/lothrazar/cyclic/block/BlockCyclic.java b/src/main/java/com/lothrazar/cyclic/block/BlockCyclic.java index deb2c7b5a..4f5c8c081 100644 --- a/src/main/java/com/lothrazar/cyclic/block/BlockCyclic.java +++ b/src/main/java/com/lothrazar/cyclic/block/BlockCyclic.java @@ -97,7 +97,7 @@ public BlockState rotate(BlockState state, LevelAccessor world, BlockPos pos, Ro @SuppressWarnings("deprecation") @Override public InteractionResult use(BlockState state, Level world, BlockPos pos, Player player, InteractionHand hand, BlockHitResult hit) { - if (hasFluidInteract && player.getItemInHand(hand).isEmpty()) { + if (hasFluidInteract) { if (!world.isClientSide) { BlockEntity tankHere = world.getBlockEntity(pos); if (tankHere != null) {