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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
package net.minecraft.server;
import java.util.Random;
public class BlockReed extends Block {
protected BlockReed() {
super(Material.PLANT);
float f = 0.375F;
this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, 1.0F, 0.5F + f);
this.a(true);
}
public void a(World world, int i, int j, int k, Random random) {
if (world.getType(i, j - 1, k) == Blocks.SUGAR_CANE_BLOCK || this.e(world, i, j, k)) {
if (world.isEmpty(i, j + 1, k)) {
int l;
for (l = 1; world.getType(i, j - l, k) == this; ++l) {
;
}
if (l < 3) {
int i1 = world.getData(i, j, k);
if (i1 == 15) {
org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(world, i, j + 1, k, this, 0); // CraftBukkit
world.setData(i, j, k, 0, 4);
} else {
world.setData(i, j, k, i1 + 1, 4);
}
}
}
}
}
public boolean canPlace(World world, int i, int j, int k) {
Block block = world.getType(i, j - 1, k);
return block == this ? true : (block != Blocks.GRASS && block != Blocks.DIRT && block != Blocks.SAND ? false : (world.getType(i - 1, j - 1, k).getMaterial() == Material.WATER ? true : (world.getType(i + 1, j - 1, k).getMaterial() == Material.WATER ? true : (world.getType(i, j - 1, k - 1).getMaterial() == Material.WATER ? true : world.getType(i, j - 1, k + 1).getMaterial() == Material.WATER))));
}
public void doPhysics(World world, int i, int j, int k, Block block) {
this.e(world, i, j, k);
}
protected final boolean e(World world, int i, int j, int k) {
if (!this.j(world, i, j, k)) {
this.b(world, i, j, k, world.getData(i, j, k), 0);
world.setAir(i, j, k);
return false;
} else {
return true;
}
}
public boolean j(World world, int i, int j, int k) {
return this.canPlace(world, i, j, k);
}
public AxisAlignedBB a(World world, int i, int j, int k) {
return null;
}
public Item getDropType(int i, Random random, int j) {
return Items.SUGAR_CANE;
}
public boolean c() {
return false;
}
public boolean d() {
return false;
}
public int b() {
return 1;
}
}
|