Uploaded image for project: 'Minecraft: Java Edition'
  1. Minecraft: Java Edition
  2. MC-210496

Sculk sensors are not activated upon harvesting sweet berry bushes

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • 1.19 Pre-release 2
    • 20w51a, 21w03a, 21w05a, 21w05b, 21w06a, 21w07a, 21w08b, 21w10a, 21w11a, 21w14a, 21w15a, 21w17a, 21w19a, 21w20a, 1.17 Pre-release 1, 1.17 Release Candidate 1, 1.17, 1.17.1 Pre-release 1, 1.17.1 Release Candidate 1, 1.17.1, 21w37a, 21w38a, 1.18, 1.18.1, 22w05a, 1.18.2, 22w14a, 22w18a, 1.19 Pre-release 1
    • Confirmed
    • Game Events
    • Normal

      The Bug:

      Sculk sensors are not activated upon harvesting sweet berry bushes.

      Steps to Reproduce:

      • Place down a sweet berry bush.
      • Apply bone meal to it until berries can be seen on the bush.
      • Place down a sculk sensor nearby.
      • Harvest the sweet berry bush.
      • Take note as to whether or not sculk sensors are activated upon harvesting sweet berry bushes.

      Observed Behavior:

      Sculk sensors are not activated upon harvesting sweet berry bushes.

      Expected Behavior:

      Sculk sensors would be activated upon harvesting sweet berry bushes.

      Code Analysis:

      Code analysis by Avoma can be found below.

      The following is based on a decompiled version of Minecraft 1.18.2 using MCP-Reborn.

      net.minecraft.world.level.block.SweetBerryBushBlock.java
      public class SweetBerryBushBlock extends BushBlock implements BonemealableBlock {
         ...
         public InteractionResult use(BlockState $bs, Level $l, BlockPos $bp, Player $p, InteractionHand $ih, BlockHitResult $bhr) {
            int i = $bs.getValue(AGE);
            boolean flag = i == 3;
            if (!flag && $p.getItemInHand($ih).is(Items.BONE_MEAL)) {
               return InteractionResult.PASS;
            } else if (i > 1) {
               int j = 1 + $l.random.nextInt(2);
               popResource($l, $bp, new ItemStack(Items.SWEET_BERRIES, j + (flag ? 1 : 0)));
               $l.playSound((Player)null, $bp, SoundEvents.SWEET_BERRY_BUSH_PICK_BERRIES, SoundSource.BLOCKS, 1.0F, 0.8F + $l.random.nextFloat() * 0.4F);
               $l.setBlock($bp, $bs.setValue(AGE, Integer.valueOf(1)), 2);
               return InteractionResult.sidedSuccess($l.isClientSide);
            } else {
               return super.use($bs, $l, $bp, $p, $ih, $bhr);
            }
         }
         ...

      If we look at the above class, we can see that harvesting berries from sweet berry bushes simply isn't registered as a game event as the gameEvent() method is never called, thus not detecting this action as a vibration.

      Potential Fix:

      Simply calling the gameEvent() method where appropriate within this piece of code should resolve this problem. The "BLOCK_CHANGE" game event tag would work nicely in this instance here as the block states of sweet berry bushes are changed when they're harvested. The following line of code could be used in order to fix this:

      $LEVEL.gameEvent($PLAYER, GameEvent.BLOCK_CHANGE, $BLOCKPOS);

            kingbdogz [Mojang] Brandon Pearce
            Avoma [Mod] Avoma
            Votes:
            12 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved:
              CHK: