@@ -1,47 +1,50 @@
|
||||
--- a/net/minecraft/world/level/block/BlockNote.java
|
||||
+++ b/net/minecraft/world/level/block/BlockNote.java
|
||||
@@ -48,7 +48,8 @@
|
||||
@@ -51,7 +51,8 @@
|
||||
|
||||
if (flag1 != (Boolean) iblockdata.getValue(BlockNote.POWERED)) {
|
||||
if (flag1) {
|
||||
- this.playNote(world, blockposition);
|
||||
+ this.playNote(world, blockposition, iblockdata); // CraftBukkit
|
||||
- this.playNote((Entity) null, world, blockposition);
|
||||
+ this.playNote((Entity) null, world, blockposition, iblockdata); // CraftBukkit
|
||||
+ iblockdata = world.getBlockState(blockposition); // CraftBukkit - SPIGOT-5617: update in case changed in event
|
||||
}
|
||||
|
||||
world.setBlock(blockposition, (IBlockData) iblockdata.setValue(BlockNote.POWERED, flag1), 3);
|
||||
@@ -56,9 +57,14 @@
|
||||
@@ -59,11 +60,18 @@
|
||||
|
||||
}
|
||||
|
||||
- private void playNote(World world, BlockPosition blockposition) {
|
||||
+ private void playNote(World world, BlockPosition blockposition, IBlockData data) { // CraftBukkit
|
||||
- private void playNote(@Nullable Entity entity, World world, BlockPosition blockposition) {
|
||||
+ private void playNote(@Nullable Entity entity, World world, BlockPosition blockposition, IBlockData data) { // CraftBukkit
|
||||
if (world.getBlockState(blockposition.above()).isAir()) {
|
||||
- world.blockEvent(blockposition, this, 0, 0);
|
||||
+ // CraftBukkit start
|
||||
+ org.bukkit.event.block.NotePlayEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callNotePlayEvent(world, blockposition, data.getValue(BlockNote.INSTRUMENT), data.getValue(BlockNote.NOTE));
|
||||
+ if (!event.isCancelled()) {
|
||||
+ world.blockEvent(blockposition, this, 0, 0);
|
||||
+ if (event.isCancelled()) {
|
||||
+ return;
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
world.blockEvent(blockposition, this, 0, 0);
|
||||
world.gameEvent(entity, GameEvent.NOTE_BLOCK_PLAY, blockposition);
|
||||
}
|
||||
|
||||
+
|
||||
}
|
||||
@@ -70,7 +76,7 @@
|
||||
|
||||
@Override
|
||||
@@ -73,7 +81,7 @@
|
||||
} else {
|
||||
iblockdata = (IBlockData) iblockdata.cycle(BlockNote.NOTE);
|
||||
world.setBlock(blockposition, iblockdata, 3);
|
||||
- this.playNote(world, blockposition);
|
||||
+ this.playNote(world, blockposition, iblockdata); // CraftBukkit
|
||||
- this.playNote(entityhuman, world, blockposition);
|
||||
+ this.playNote(entityhuman, world, blockposition, iblockdata); // CraftBukkit
|
||||
entityhuman.awardStat(StatisticList.TUNE_NOTEBLOCK);
|
||||
return EnumInteractionResult.CONSUME;
|
||||
}
|
||||
@@ -79,7 +85,7 @@
|
||||
@@ -82,7 +90,7 @@
|
||||
@Override
|
||||
public void attack(IBlockData iblockdata, World world, BlockPosition blockposition, EntityHuman entityhuman) {
|
||||
if (!world.isClientSide) {
|
||||
- this.playNote(world, blockposition);
|
||||
+ this.playNote(world, blockposition, iblockdata); // CraftBukkit
|
||||
- this.playNote(entityhuman, world, blockposition);
|
||||
+ this.playNote(entityhuman, world, blockposition, iblockdata); // CraftBukkit
|
||||
entityhuman.awardStat(StatisticList.PLAY_NOTEBLOCK);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user