diff options
Diffstat (limited to 'patches/unapplied/server/0285-Fix-sounds-when-item-frames-are-modified-MC-123450.patch')
-rw-r--r-- | patches/unapplied/server/0285-Fix-sounds-when-item-frames-are-modified-MC-123450.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/patches/unapplied/server/0285-Fix-sounds-when-item-frames-are-modified-MC-123450.patch b/patches/unapplied/server/0285-Fix-sounds-when-item-frames-are-modified-MC-123450.patch new file mode 100644 index 0000000000..d0f13edcc4 --- /dev/null +++ b/patches/unapplied/server/0285-Fix-sounds-when-item-frames-are-modified-MC-123450.patch @@ -0,0 +1,20 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Phoenix616 <[email protected]> +Date: Sat, 27 Apr 2019 20:00:43 +0100 +Subject: [PATCH] Fix sounds when item frames are modified (MC-123450) + +This also fixes the adding sound playing when the item frame direction is changed. + +diff --git a/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java b/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java +index 7dfbcb2ed831cff5d002d79fb81514e6abf587a4..c0deabf9d86d086fbd8cbaac5a02badf5c01c870 100644 +--- a/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java ++++ b/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java +@@ -290,7 +290,7 @@ public class ItemFrame extends HangingEntity { + + this.onItemChanged(itemstack); + this.getEntityData().set(ItemFrame.DATA_ITEM, itemstack); +- if (!itemstack.isEmpty() && playSound) { // CraftBukkit ++ if (!itemstack.isEmpty() && flag && playSound) { // CraftBukkit // Paper - only play sound when update flag is set + this.playSound(this.getAddItemSound(), 1.0F, 1.0F); + } + |