SPIGOT-4314: Ability to change item in frame without playing sound
By: simpleauthority <jacob@algorithmjunkie.com>
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user