summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntityNote.patch
blob: e0498c39075cc1c6ee9b289be980b26cbe3266d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- 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
         }
     }
 }