1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
package net.minecraft.server;
public class TileEntityNote extends TileEntity {
public byte note = 0;
public boolean b = false;
public TileEntityNote() {}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
nbttagcompound.setByte("note", this.note);
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
this.note = nbttagcompound.getByte("note");
if (this.note < 0) {
this.note = 0;
}
if (this.note > 24) {
this.note = 24;
}
}
public void a() {
this.note = (byte) ((this.note + 1) % 25);
this.update();
}
public void play(World world, int i, int j, int k) {
if (world.getMaterial(i, j + 1, k) == Material.AIR) {
Material material = world.getMaterial(i, j - 1, k);
byte b0 = 0;
if (material == Material.STONE) {
b0 = 1;
}
if (material == Material.SAND) {
b0 = 2;
}
if (material == Material.SHATTERABLE) {
b0 = 3;
}
if (material == Material.WOOD) {
b0 = 4;
}
// CraftBukkit start
org.bukkit.event.block.NotePlayEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callNotePlayEvent(this.world, i, j, k, b0, this.note);
if (!event.isCancelled()) {
this.world.playNote(i, j, k, Block.NOTE_BLOCK.id, event.getInstrument().getType(), event.getNote().getId());
}
// CraftBukkit end
}
}
}
|