summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntityNote.patch
blob: 1039ba9e266a188533ac4199fad7b64a00d3e45f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- /home/matt/mc-dev-private//net/minecraft/server/TileEntityNote.java	2015-02-26 22:40:23.159608133 +0000
+++ src/main/java/net/minecraft/server/TileEntityNote.java	2015-02-26 22:40:23.159608133 +0000
@@ -44,7 +44,12 @@
                 b0 = 4;
             }
 
-            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
         }
     }
 }