mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
17 lines
730 B
Diff
17 lines
730 B
Diff
--- a/net/minecraft/server/TileEntityNote.java
|
|
+++ b/net/minecraft/server/TileEntityNote.java
|
|
@@ -70,7 +70,12 @@
|
|
b0 = 9;
|
|
}
|
|
|
|
- world.playBlockAction(blockposition, Blocks.NOTEBLOCK, b0, this.note);
|
|
+ // CraftBukkit start
|
|
+ org.bukkit.event.block.NotePlayEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callNotePlayEvent(this.world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), b0, this.note);
|
|
+ if (!event.isCancelled()) {
|
|
+ world.playBlockAction(blockposition, Blocks.NOTEBLOCK, event.getInstrument().getType(), event.getNote().getId());
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
}
|