From 5468da1b03b6af060ff1616232515d2014dbd434 Mon Sep 17 00:00:00 2001 From: Kieran Wallbanks Date: Mon, 21 Jun 2021 12:33:45 +0100 Subject: [PATCH] Fix NotePlayEvent --- .../main/java/org/bukkit/event/block/NotePlayEvent.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/event/block/NotePlayEvent.java b/paper-api/src/main/java/org/bukkit/event/block/NotePlayEvent.java index c9ecbebbc2..ea7cb75ba3 100644 --- a/paper-api/src/main/java/org/bukkit/event/block/NotePlayEvent.java +++ b/paper-api/src/main/java/org/bukkit/event/block/NotePlayEvent.java @@ -56,11 +56,13 @@ public class NotePlayEvent extends BlockEvent implements Cancellable { /** * Overrides the {@link Instrument} to be used. + *

+ * Only works when the note block isn't under a player head. + * For this specific case the 'note_block_sound' property of the + * player head state takes the priority. * * @param instrument the Instrument. Has no effect if null. - * @deprecated no effect on newer Minecraft versions */ - @Deprecated(since = "1.13") public void setInstrument(@NotNull Instrument instrument) { if (instrument != null) { this.instrument = instrument; @@ -71,9 +73,7 @@ public class NotePlayEvent extends BlockEvent implements Cancellable { * Overrides the {@link Note} to be played. * * @param note the Note. Has no effect if null. - * @deprecated no effect on newer Minecraft versions */ - @Deprecated(since = "1.13") public void setNote(@NotNull Note note) { if (note != null) { this.note = note;