added some missing comments for falling entities

This commit is contained in:
Tahg 2011-10-27 20:03:28 -04:00
parent 2f1513cae0
commit c69f5fda9b
2 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ public class BlockSand extends Block {
byte b0 = 32;
if (!instaFall && world.a(i - b0, j - b0, k - b0, i + b0, j + b0, k + b0)) {
// CraftBukkit Change call to add data
EntityFallingSand entityfallingsand = new EntityFallingSand(world, (double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), this.id, world.getData(i, j, k));
world.addEntity(entityfallingsand);

View File

@ -14,7 +14,7 @@ public class EntityFallingSand extends Entity {
public EntityFallingSand(World world, double d0, double d1, double d2, int i, int data) {
super(world);
this.a = i;
this.data = data;
this.data = data; // CraftBukkit
this.aY = true;
this.b(0.98F, 0.98F);
this.height = this.width / 2.0F;