mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 13:07:06 +01:00
Fix entities not having valid "isValid" states. Addresses BUKKIT-2366
This commit is contained in:
parent
e3ae188ed2
commit
98c98d0f7a
2 changed files with 3 additions and 1 deletions
|
@ -91,7 +91,7 @@ public abstract class Entity {
|
|||
public boolean al;
|
||||
public EnumEntitySize am;
|
||||
public UUID uniqueId = UUID.randomUUID(); // CraftBukkit
|
||||
public boolean valid = true; // CraftBukkit
|
||||
public boolean valid = false; // CraftBukkit
|
||||
|
||||
public Entity(World world) {
|
||||
this.id = entityCount++;
|
||||
|
|
|
@ -878,6 +878,8 @@ public abstract class World implements IBlockAccess {
|
|||
|
||||
iworldaccess.a(entity);
|
||||
}
|
||||
|
||||
entity.valid = true; // CraftBukkit
|
||||
}
|
||||
|
||||
protected void b(Entity entity) {
|
||||
|
|
Loading…
Reference in a new issue