Copper Doors and Trapdoors make generic metal sounds when placing
When placing a Copper Door a Copper Trapdoor, the generic metal sound is played rather than the copper placing sound. This is inconsistent with all other copper blocks.
Linked Issues
Created Issue:
Copper Doors and Trapdoors make generic metal sounds when playing
When placing a Copper Door a Copper Trapdoor, the generic metal sound is played rather than the copper placing sound. This is inconsistent with all other copper blocks.
Environment
Windows 11
Changed Summary:
Copper Doors and Trapdoors make generic metal sounds when playingCopper Doors and Trapdoors make generic metal sounds when placing
Removed Category: (Unassigned)
Added Attachments:
Added Linked Issues:
is duplicated by
Removed Environment:
Windows 11
Added ADO: 1131666
Added Affects Versions: 23w44a
This also applies to step sounds, which also use the generic metal step sounds.
Code analysis in net/minecraft/world/level/block/state/properties/BlockSetType.java:
public static final BlockSetType COPPER = BlockSetType.register(new BlockSetType("copper", true, false, PressurePlateSensitivity.EVERYTHING, SoundType.METAL, SoundEvents.COPPER_DOOR_CLOSE, SoundEvents.COPPER_DOOR_OPEN, SoundEvents.COPPER_TRAPDOOR_CLOSE, SoundEvents.COPPER_TRAPDOOR_OPEN, SoundEvents.METAL_PRESSURE_PLATE_CLICK_OFF, SoundEvents.METAL_PRESSURE_PLATE_CLICK_ON, SoundEvents.STONE_BUTTON_CLICK_OFF, SoundEvents.STONE_BUTTON_CLICK_ON));
This defines copper blocks to use SoundType.METAL, which is the wrong one.