mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
Fix Entity persistence. Fixes BUKKIT-4397
Missed diff.
This commit is contained in:
parent
22adf8a3ce
commit
3a9622cbdc
@ -23,7 +23,7 @@ public abstract class EntityInsentient extends EntityLiving {
|
||||
private ItemStack[] equipment = new ItemStack[5];
|
||||
public float[] dropChances = new float[5]; // CraftBukkit - protected -> public
|
||||
public boolean canPickUpLoot; // CraftBukkit - private -> public
|
||||
public boolean persistent; // CraftBukkit - private -> public
|
||||
public boolean persistent = !isTypeNotPersistent(); // CraftBukkit - private -> public
|
||||
protected float f;
|
||||
private Entity bu;
|
||||
protected int g;
|
||||
|
Loading…
Reference in New Issue
Block a user