mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 03:25:15 +01:00
SPIGOT-2408: setTicksLived does not properly affect FallingSand
This commit is contained in:
parent
7f1a32252b
commit
fb568fdc70
@ -57,4 +57,12 @@ public class CraftFallingSand extends CraftEntity implements FallingSand {
|
|||||||
public void setHurtEntities(boolean hurtEntities) {
|
public void setHurtEntities(boolean hurtEntities) {
|
||||||
getHandle().hurtEntities = hurtEntities;
|
getHandle().hurtEntities = hurtEntities;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setTicksLived(int value) {
|
||||||
|
super.setTicksLived(value);
|
||||||
|
|
||||||
|
// Second field for EntityFallingBlock
|
||||||
|
getHandle().ticksLived = value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user