2020-08-25 04:22:08 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sun, 10 May 2020 22:12:46 -0400
|
|
|
|
Subject: [PATCH] Ensure Entity AABB's are never invalid
|
|
|
|
|
|
|
|
|
2021-03-16 08:19:45 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
|
|
|
index 031b754079dc1944b232014c28c64cdb6bcad2fb..b0ef4810a4526feec57f8bceb7562aa7629d15af 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
|
|
|
@@ -474,7 +474,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, ne
|
2020-08-25 04:22:08 +02:00
|
|
|
|
|
|
|
public void setPosition(double d0, double d1, double d2) {
|
|
|
|
this.setPositionRaw(d0, d1, d2);
|
|
|
|
- this.a(this.size.a(d0, d1, d2));
|
|
|
|
+ //this.a(this.size.a(d0, d1, d2)); // Paper - move into setPositionRaw
|
|
|
|
if (valid) ((WorldServer) world).chunkCheck(this); // CraftBukkit
|
|
|
|
}
|
|
|
|
|
2021-03-16 08:19:45 +01:00
|
|
|
@@ -2989,6 +2989,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, ne
|
2020-08-25 04:22:08 +02:00
|
|
|
return new AxisAlignedBB(vec3d, vec3d1);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final void setBoundingBox(AxisAlignedBB axisalignedbb) { a(axisalignedbb); } // Paper - OBFHELPER
|
|
|
|
public void a(AxisAlignedBB axisalignedbb) {
|
|
|
|
// CraftBukkit start - block invalid bounding boxes
|
|
|
|
double minX = axisalignedbb.minX,
|
2021-03-16 08:19:45 +01:00
|
|
|
@@ -3427,6 +3428,12 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, ne
|
2020-08-25 04:22:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setPositionRaw(double d0, double d1, double d2) {
|
|
|
|
+ // Paper start - never allow AABB to become desynced from position
|
|
|
|
+ // hanging has its own special logic
|
|
|
|
+ if (!(this instanceof EntityHanging) && (this.loc.x != d0 || this.loc.y != d1 || this.loc.z != d2)) {
|
|
|
|
+ this.setBoundingBox(this.size.a(d0, d1, d2));
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
if (this.loc.x != d0 || this.loc.y != d1 || this.loc.z != d2) {
|
|
|
|
this.loc = new Vec3D(d0, d1, d2);
|
|
|
|
int i = MathHelper.floor(d0);
|