aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0375-Ensure-Entity-position-and-AABB-are-never-invalid.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0375-Ensure-Entity-position-and-AABB-are-never-invalid.patch')
-rw-r--r--patches/server/0375-Ensure-Entity-position-and-AABB-are-never-invalid.patch65
1 files changed, 65 insertions, 0 deletions
diff --git a/patches/server/0375-Ensure-Entity-position-and-AABB-are-never-invalid.patch b/patches/server/0375-Ensure-Entity-position-and-AABB-are-never-invalid.patch
new file mode 100644
index 0000000000..782935a98b
--- /dev/null
+++ b/patches/server/0375-Ensure-Entity-position-and-AABB-are-never-invalid.patch
@@ -0,0 +1,65 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Aikar <[email protected]>
+Date: Sun, 10 May 2020 22:12:46 -0400
+Subject: [PATCH] Ensure Entity position and AABB are never invalid
+
+Co-authored-by: Spottedleaf <[email protected]>
+
+diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
+index b1d870b9a3b414ed49b4674afc2c6088d457ebc1..f2855de7320dc9532d0b568b84b0b7e5a2064045 100644
+--- a/src/main/java/net/minecraft/world/entity/Entity.java
++++ b/src/main/java/net/minecraft/world/entity/Entity.java
+@@ -670,8 +670,8 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
+ }
+
+ public void setPos(double x, double y, double z) {
+- this.setPosRaw(x, y, z);
+- this.setBoundingBox(this.makeBoundingBox());
++ this.setPosRaw(x, y, z, true); // Paper - Block invalid positions and bounding box; force update
++ // this.setBoundingBox(this.makeBoundingBox()); // Paper - Block invalid positions and bounding box; move into setPosRaw
+ }
+
+ protected AABB makeBoundingBox() {
+@@ -4225,7 +4225,29 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
+ return this.getZ((2.0D * this.random.nextDouble() - 1.0D) * widthScale);
+ }
+
++ // Paper start - Block invalid positions and bounding box
++ public static boolean checkPosition(Entity entity, double newX, double newY, double newZ) {
++ if (Double.isFinite(newX) && Double.isFinite(newY) && Double.isFinite(newZ)) {
++ return true;
++ }
++
++ String entityInfo;
++ try {
++ entityInfo = entity.toString();
++ } catch (Exception ex) {
++ entityInfo = "[Entity info unavailable] ";
++ }
++ LOGGER.error("New entity position is invalid! Tried to set invalid position ({},{},{}) for entity {} located at {}, entity info: {}", newX, newY, newZ, entity.getClass().getName(), entity.position, entityInfo, new Throwable());
++ return false;
++ }
+ public final void setPosRaw(double x, double y, double z) {
++ this.setPosRaw(x, y, z, false);
++ }
++ public final void setPosRaw(double x, double y, double z, boolean forceBoundingBoxUpdate) {
++ if (!checkPosition(this, x, y, z)) {
++ return;
++ }
++ // Paper end - Block invalid positions and bounding box
+ if (this.position.x != x || this.position.y != y || this.position.z != z) {
+ this.position = new Vec3(x, y, z);
+ int i = Mth.floor(x);
+@@ -4243,6 +4265,12 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
+ this.levelCallback.onMove();
+ }
+
++ // Paper start - Block invalid positions and bounding box; don't allow desync of pos and AABB
++ // hanging has its own special logic
++ if (!(this instanceof net.minecraft.world.entity.decoration.HangingEntity) && (forceBoundingBoxUpdate || this.position.x != x || this.position.y != y || this.position.z != z)) {
++ this.setBoundingBox(this.makeBoundingBox());
++ }
++ // Paper end - Block invalid positions and bounding box
+ }
+
+ public void checkDespawn() {}