Updated to use mc-dev rename revision 1

This commit is contained in:
Nathan Adams
2011-11-29 23:17:43 +00:00
parent 8665161eaa
commit 8fbe78a2c3
117 changed files with 907 additions and 1161 deletions

View File

@@ -195,8 +195,8 @@ public class BlockRedstoneWire extends Block {
}
}
public void a(World world, int i, int j, int k) {
super.a(world, i, j, k);
public void onPlace(World world, int i, int j, int k) {
super.onPlace(world, i, j, k);
if (!world.isStatic) {
this.g(world, i, j, k);
world.applyPhysics(i, j + 1, k, this.id);
@@ -294,7 +294,7 @@ public class BlockRedstoneWire extends Block {
}
}
public int a(int i, Random random, int j) {
public int getDropType(int i, Random random, int j) {
return Item.REDSTONE.id;
}