13
0
geforkt von Mirrors/Paper

Fix Entity persistence. Fixes BUKKIT-4397

Missed diff.
Dieser Commit ist enthalten in:
Nate Mortensen 2013-07-02 11:36:31 -06:00
Ursprung 22adf8a3ce
Commit 3a9622cbdc

Datei anzeigen

@ -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;