PaperMC/paper-server/nms-patches/TileEntityNote.patch
CraftBukkit/Spigot a8ddf37419 Remove patch headers
By: GunfighterJ <joseph.jenniges@gmail.com>
2014-11-28 16:54:14 -06:00

14 lines
636 B
Diff

@@ -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
}
}
}