Uploaded image for project: 'Minecraft (Bedrock codebase)'
  1. Minecraft (Bedrock codebase)
  2. MCPE-178067

Parity: Decorated Pots play extra "stone" break sound when picked up without shattering

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • None
    • 1.20.60.24 Preview, 1.20.51 Hotfix
    • None
    • Confirmed
    • Multiple
    • 1164686

      Breaking a decorated pot without shattering it plays two sounds on Bedrock, a stone sound and a decorated pot sound, when it should only play the decorated pot sound.

      To Reproduce

      Break a decorated pot in creative or survival with an empty hand.

      Observed Result

      Breaking a decorated pot plays both a stone breaking sound and a decorated pot breaking sound.

      Expected Result

      Breaking a decorated pot plays only a decorated pot breaking sound.

      Cause

      This issue exists because the "break" event is not defined for the "decorated_pot" block sound set. This set has a unique "break_pot" event instead which is called when the pot is broken without being shattered.

      However, the game still attempts to play the "break" event. Since the "decorated_pot" set does not have a "break" event, the game falls back to the "normal" set, which is defined to use "dig.stone" as the "break" sound. As a result, both "dig.stone" and "break.decorated_pot" are played at the same time.

      To Fix

      The "break" sound should be defined for the "decorated_pot" set and given a volume of 0. Alternatively, the "break_pot" event should be deprecated in favor of "break" because "break_pot" is redundant.

      The attached resource pack sets the volume of the "break" event to 0. A video with it applied is attached to demonstrate the fixed result. (Note: The fix pack also adjusts the pitch of the break sound to match Java Edition for ideal comparison.)

        1. bedrock_fixed.mp4
          3.73 MB
        2. bedrock.mp4
          4.97 MB
        3. decorated_pot_fix.mcpack
          1 kB
        4. java.mp4
          3.19 MB

            AgentMindStorm2 AgentMindStorm2
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              CHK: