mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
90ac03522a
This reverts commit d6e3dff7d8
.
17 lines
840 B
Diff
17 lines
840 B
Diff
--- ../work/decompile-8eb82bde//net/minecraft/server/TileEntityNote.java 2014-11-28 17:43:43.405707428 +0000
|
|
+++ src/main/java/net/minecraft/server/TileEntityNote.java 2014-11-28 17:38:18.000000000 +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
|
|
}
|
|
}
|
|
}
|