2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2019-04-27 21:05:20 +02:00
|
|
|
From: Phoenix616 <mail@moep.tv>
|
|
|
|
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.
|
|
|
|
|
2021-03-16 08:19:45 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/decoration/EntityItemFrame.java b/src/main/java/net/minecraft/world/entity/decoration/EntityItemFrame.java
|
|
|
|
index 584f64946821092afab57b9409bc249403bc16e7..43152a6c70c9433d627a58051101530ddd693307 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/entity/decoration/EntityItemFrame.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/decoration/EntityItemFrame.java
|
|
|
|
@@ -277,7 +277,7 @@ public class EntityItemFrame extends EntityHanging {
|
2019-04-27 21:05:20 +02:00
|
|
|
}
|
|
|
|
|
2019-05-10 21:03:43 +02:00
|
|
|
this.getDataWatcher().set(EntityItemFrame.ITEM, itemstack);
|
2019-04-27 21:05:20 +02:00
|
|
|
- if (!itemstack.isEmpty() && playSound) { // CraftBukkit
|
|
|
|
+ if (!itemstack.isEmpty() && flag && playSound) { // CraftBukkit // Paper - only play sound when update flag is set
|
2020-06-25 16:09:55 +02:00
|
|
|
this.playSound(SoundEffects.ENTITY_ITEM_FRAME_ADD_ITEM, 1.0F, 1.0F);
|
2019-04-27 21:05:20 +02:00
|
|
|
}
|
|
|
|
|