diff --git a/Spigot-Server-Patches/0354-MC-2025-Save-and-load-entity-AABB-to-prevent-wobble.patch b/Spigot-Server-Patches/0354-MC-2025-Save-and-load-entity-AABB-to-prevent-wobble.patch index 76136c3abe..bce3ce78d3 100644 --- a/Spigot-Server-Patches/0354-MC-2025-Save-and-load-entity-AABB-to-prevent-wobble.patch +++ b/Spigot-Server-Patches/0354-MC-2025-Save-and-load-entity-AABB-to-prevent-wobble.patch @@ -36,8 +36,8 @@ index 7ac07ac07ac0..7ac07ac07ac0 100644 - public final double maxX; - public final double maxY; - public final double maxZ; -+ public final double minY; public double getMinY() { return this.minY; } // Paper - OBFHELPER + public final double minX; public double getMinX() { return this.minX; } // Paper - OBFHELPER ++ public final double minY; public double getMinY() { return this.minY; } // Paper - OBFHELPER + public final double minZ; public double getMinZ() { return this.minZ; } // Paper - OBFHELPER + public final double maxX; public double getMaxX() { return this.maxX; } // Paper - OBFHELPER + public final double maxY; public double getMaxY() { return this.maxY; } // Paper - OBFHELPER