3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00
Paper/nms-patches/TileEntityNote.patch

17 Zeilen
730 B
Diff

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