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];
|
private ItemStack[] equipment = new ItemStack[5];
|
||||||
public float[] dropChances = new float[5]; // CraftBukkit - protected -> public
|
public float[] dropChances = new float[5]; // CraftBukkit - protected -> public
|
||||||
public boolean canPickUpLoot; // CraftBukkit - private -> public
|
public boolean canPickUpLoot; // CraftBukkit - private -> public
|
||||||
public boolean persistent; // CraftBukkit - private -> public
|
public boolean persistent = !isTypeNotPersistent(); // CraftBukkit - private -> public
|
||||||
protected float f;
|
protected float f;
|
||||||
private Entity bu;
|
private Entity bu;
|
||||||
protected int g;
|
protected int g;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user