2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/TileEntityNote.java
|
|
|
|
+++ b/net/minecraft/server/TileEntityNote.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -47,7 +47,12 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|