|
| 1 | +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
| 2 | +From: Kieran Wallbanks <kieran.wallbanks@gmail.com> |
| 3 | +Date: Mon, 21 Jun 2021 14:23:50 +0100 |
| 4 | +Subject: [PATCH] Fix NotePlayEvent |
| 5 | + |
| 6 | + |
| 7 | +diff --git a/src/main/java/net/minecraft/world/level/block/NoteBlock.java b/src/main/java/net/minecraft/world/level/block/NoteBlock.java |
| 8 | +index 16e11e31077f160198e0b04abdfeabb97ed20c6f..0e106bcc1f882877a5e444a2621466c6e4696d42 100644 |
| 9 | +--- a/src/main/java/net/minecraft/world/level/block/NoteBlock.java |
| 10 | ++++ b/src/main/java/net/minecraft/world/level/block/NoteBlock.java |
| 11 | +@@ -60,10 +60,9 @@ public class NoteBlock extends Block { |
| 12 | + private void playNote(Level world, BlockPos blockposition, BlockState data) { // CraftBukkit |
| 13 | + if (world.getBlockState(blockposition.above()).isAir()) { |
| 14 | + // CraftBukkit start |
| 15 | +- org.bukkit.event.block.NotePlayEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callNotePlayEvent(world, blockposition, data.getValue(NoteBlock.INSTRUMENT), data.getValue(NoteBlock.NOTE)); |
| 16 | +- if (!event.isCancelled()) { |
| 17 | ++ // Paper start - move NotePlayEvent call to fix instrument/note changes |
| 18 | + world.blockEvent(blockposition, this, 0, 0); |
| 19 | +- } |
| 20 | ++ // Paper end |
| 21 | + // CraftBukkit end |
| 22 | + } |
| 23 | + |
| 24 | +@@ -92,10 +91,14 @@ public class NoteBlock extends Block { |
| 25 | + |
| 26 | + @Override |
| 27 | + public boolean triggerEvent(BlockState state, Level world, BlockPos pos, int type, int data) { |
| 28 | +- int k = (Integer) state.getValue(NoteBlock.NOTE); |
| 29 | ++ // Paper start - move NotePlayEvent call to fix instrument/note changes |
| 30 | ++ org.bukkit.event.block.NotePlayEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callNotePlayEvent(world, pos, state.getValue(INSTRUMENT), state.getValue(NOTE)); |
| 31 | ++ if (event.isCancelled()) return false; |
| 32 | ++ int k = event.getNote().getId(); |
| 33 | + float f = (float) Math.pow(2.0D, (double) (k - 12) / 12.0D); |
| 34 | + |
| 35 | +- world.playSound((Player) null, pos, ((NoteBlockInstrument) state.getValue(NoteBlock.INSTRUMENT)).getSoundEvent(), SoundSource.RECORDS, 3.0F, f); |
| 36 | ++ world.playSound(null, pos, org.bukkit.craftbukkit.block.data.CraftBlockData.toNMS(event.getInstrument(), NoteBlockInstrument.class).getSoundEvent(), SoundSource.RECORDS, 3.0F, f); |
| 37 | ++ // Paper end |
| 38 | + world.addParticle(ParticleTypes.NOTE, (double) pos.getX() + 0.5D, (double) pos.getY() + 1.2D, (double) pos.getZ() + 0.5D, (double) k / 24.0D, 0.0D, 0.0D); |
| 39 | + return true; |
| 40 | + } |
0 commit comments