Update to Minecraft Server 1.2

This commit is contained in:
Dinnerbone
2011-01-14 13:31:10 +00:00
parent e6e50ddf9b
commit 2761b59845
55 changed files with 1219 additions and 1064 deletions

View File

@@ -11,20 +11,20 @@ public class BlockWorkbench extends Block {
protected BlockWorkbench(int i) {
super(i, Material.c);
bg = 59;
bh = 59;
}
public int a(int i) {
if (i == 1) {
return bg - 16;
return bh - 16;
}
if (i == 0) {
return Block.x.a(0);
}
if (i == 2 || i == 4) {
return bg + 1;
return bh + 1;
} else {
return bg;
return bh;
}
}