From d8d64b44bb46323d44520fe27feda0a9a08c1c82 Mon Sep 17 00:00:00 2001 From: "neoforged-automation[bot]" <177631280+neoforged-automation[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 21:58:36 +0800 Subject: [PATCH] Backport to 1.21.1: Override context-aware getPlaceSound in SolidBucketItem (#3375) Co-authored-by: sciwhiz12 <21304337+sciwhiz12@users.noreply.github.com> --- .../world/item/SolidBucketItem.java.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 patches/net/minecraft/world/item/SolidBucketItem.java.patch diff --git a/patches/net/minecraft/world/item/SolidBucketItem.java.patch b/patches/net/minecraft/world/item/SolidBucketItem.java.patch new file mode 100644 index 0000000000..bcd73615a8 --- /dev/null +++ b/patches/net/minecraft/world/item/SolidBucketItem.java.patch @@ -0,0 +1,14 @@ +--- a/net/minecraft/world/item/SolidBucketItem.java ++++ b/net/minecraft/world/item/SolidBucketItem.java +@@ -33,6 +_,11 @@ + } + + @Override ++ protected SoundEvent getPlaceSound(BlockState state, Level level, BlockPos pos, Player entity) { ++ return this.getPlaceSound(state); ++ } ++ ++ @Override + public String getDescriptionId() { + return this.getOrCreateDescriptionId(); + }