SPIGOT-2408: setTicksLived does not properly affect FallingSand

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2016-06-13 18:16:15 +10:00
parent c93d857872
commit b2c01f26da

View File

@ -57,4 +57,12 @@ public class CraftFallingSand extends CraftEntity implements FallingSand {
public void setHurtEntities(boolean hurtEntities) {
getHandle().hurtEntities = hurtEntities;
}
@Override
public void setTicksLived(int value) {
super.setTicksLived(value);
// Second field for EntityFallingBlock
getHandle().ticksLived = value;
}
}