mirror of
				https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
				synced 2025-10-31 08:39:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			730 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			730 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/net/minecraft/server/TileEntityNote.java
 | |
| +++ b/net/minecraft/server/TileEntityNote.java
 | |
| @@ -70,7 +70,12 @@
 | |
|                  b0 = 9;
 | |
|              }
 | |
|  
 | |
| -            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
 | |
|          }
 | |
|      }
 | |
|  }
 | 
