mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-18 13:53:49 -07:00
SPIGOT-1076: Add HurtEntities API for FallingBlock.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
--- a/net/minecraft/server/EntityFallingBlock.java
|
||||
+++ b/net/minecraft/server/EntityFallingBlock.java
|
||||
@@ -4,6 +4,8 @@
|
||||
@@ -4,13 +4,15 @@
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
|
||||
@@ -9,6 +9,14 @@
|
||||
public class EntityFallingBlock extends Entity {
|
||||
|
||||
private IBlockData block;
|
||||
public int ticksLived;
|
||||
public boolean dropItem = true;
|
||||
private boolean e;
|
||||
- private boolean hurtEntities;
|
||||
+ public boolean hurtEntities; // PAIL: private -> public
|
||||
private int fallHurtMax = 40;
|
||||
private float fallHurtAmount = 2.0F;
|
||||
public NBTTagCompound tileEntityData;
|
||||
@@ -56,7 +58,7 @@
|
||||
|
||||
if (this.ticksLived++ == 0) {
|
||||
|
Reference in New Issue
Block a user