SPIGOT-4314: Ability to change item in frame without playing sound

By: simpleauthority <jacob@algorithmjunkie.com>
This commit is contained in:
CraftBukkit/Spigot
2018-09-11 00:09:10 -07:00
parent 27a8eae207
commit 41347a700a
2 changed files with 27 additions and 1 deletions

View File

@@ -57,7 +57,11 @@ public class CraftItemFrame extends CraftHanging implements ItemFrame {
}
public void setItem(org.bukkit.inventory.ItemStack item) {
getHandle().setItem(CraftItemStack.asNMSCopy(item));
setItem(item, true);
}
public void setItem(org.bukkit.inventory.ItemStack item, boolean playSound) {
getHandle().setItem(CraftItemStack.asNMSCopy(item), true, playSound);
}
public org.bukkit.inventory.ItemStack getItem() {