-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlockFence.java
More file actions
49 lines (41 loc) · 1.12 KB
/
BlockFence.java
File metadata and controls
49 lines (41 loc) · 1.12 KB
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
package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
public class BlockFence extends Block
{
public BlockFence(int i, int j)
{
super(i, j, Material.wood);
}
public boolean canPlaceBlockAt(World world, int i, int j, int k)
{
if(world.getBlockId(i, j - 1, k) == blockID)
{
return false;
}
if(!world.getBlockMaterial(i, j - 1, k).isSolid())
{
return false;
} else
{
return super.canPlaceBlockAt(world, i, j, k);
}
}
public AxisAlignedBB getCollisionBoundingBoxFromPool(World world, int i, int j, int k)
{
return AxisAlignedBB.getBoundingBoxFromPool(i, j, k, i + 1, (float)j + 1.5F, k + 1);
}
public boolean isOpaqueCube()
{
return false;
}
public boolean renderAsNormalBlock()
{
return false;
}
public int getRenderType()
{
return 11;
}
}