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

Cake is supposed to trigger the block destroyed event when its last slice is eaten, but it does not

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • None
    • 21w05a, 21w06a, 21w10a, 1.17.1
    • Plausible
    • Game Events
    • Low

      The bug

      There's a function in CakeBlock.java that triggers the block_destroy game event if the last slice of cake is eaten:

      if (n < 6)
      {
        levelAccessor.setBlock(blockPos, (BlockState)blockState.setValue(BITES, n + 1), 3);
      }
      else
      {
        levelAccessor.removeBlock(blockPos, false); levelAccessor.gameEvent((Entity)player, GameEvent.BLOCK_DESTROY, blockPos);
      }
      

      However, this does not work correctly in game. If you eat the last slice of cake near a sculk sensor attached to a comparator, it will give a strength of 8, which is the normal eat event, instead of 13, which is the block destroy event.

      Relates to MC-213947

            Unassigned Unassigned
            PancakeIdentity PancakeIdentity
            Votes:
            8 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              CHK: