mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
added some missing comments for falling entities
This commit is contained in:
parent
2f1513cae0
commit
c69f5fda9b
@ -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);
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user