-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBlockHumanEgg.java
38 lines (28 loc) · 1.05 KB
/
BlockHumanEgg.java
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
package net.minecraft.src;
import java.util.Random;
public class BlockHumanEgg extends BlockContainer {
protected BlockHumanEgg(int i) {
super(i, Material.glass);
}
public TileEntity getBlockEntity(){
return new TileEntityHumanEgg();
}
@Override
public void onNeighborBlockChange(World world, int i, int j, int k, int l) {
if (l > 0 && Block.blocksList[l].canProvidePower())
{
boolean flag = world.isBlockIndirectlyGettingPowered(i, j, k) || world.isBlockIndirectlyGettingPowered(i, j + 1, k) || world.isBlockGettingPowered(i, j, k);
if (flag)
{
TileEntity tileentity = world.getBlockTileEntity(i, j, k);
if (tileentity != null && tileentity instanceof TileEntityHumanEgg)
{
((TileEntityHumanEgg)tileentity).onPowered();
}
}
}
}
public boolean isOpaqueCube(){return false;}
public boolean renderAsNormalBlock(){return false;}
public int getRenderType(){return 1;}
}