mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 20:07:41 +01:00
Fix Projectile#setOwner(null) not clearing owner (#9715)
* Fix Projectile#setOwner(null) not clearing owner * rebased and merged into mentioned patch --------- Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>
This commit is contained in:
parent
e5e00b653b
commit
a9be834ffa
@ -8,6 +8,11 @@ the API matches the owner UUID specified in the entity nbt.
|
|||||||
Previously, after the entity reloaded, Projectile#getShooter
|
Previously, after the entity reloaded, Projectile#getShooter
|
||||||
would return null, while the entity still had an owner.
|
would return null, while the entity still had an owner.
|
||||||
|
|
||||||
|
Also fixes setting the shooter/owner to null actually
|
||||||
|
clearing the owner.
|
||||||
|
|
||||||
|
Co-authored-by: Warrior <50800980+Warriorrrr@users.noreply.github.com>
|
||||||
|
|
||||||
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
||||||
@ -30,6 +35,13 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
}
|
}
|
||||||
- this.projectileSource = (entity != null && entity.getBukkitEntity() instanceof ProjectileSource) ? (ProjectileSource) entity.getBukkitEntity() : null; // CraftBukkit
|
- this.projectileSource = (entity != null && entity.getBukkitEntity() instanceof ProjectileSource) ? (ProjectileSource) entity.getBukkitEntity() : null; // CraftBukkit
|
||||||
-
|
-
|
||||||
|
+ // Paper start - Fix null owners not being handled
|
||||||
|
+ else {
|
||||||
|
+ this.ownerUUID = null;
|
||||||
|
+ this.cachedOwner = null;
|
||||||
|
+ this.projectileSource = null;
|
||||||
|
+ }
|
||||||
|
+ // Paper end
|
||||||
+ this.refreshProjectileSource(false); // Paper
|
+ this.refreshProjectileSource(false); // Paper
|
||||||
+ }
|
+ }
|
||||||
+ // Paper start
|
+ // Paper start
|
||||||
|
Loading…
Reference in New Issue
Block a user