2019-05-13 03:39:06 +02:00
|
|
|
From 86cfce2ef59058237e194d6be275d49645d503f8 Mon Sep 17 00:00:00 2001
|
2016-12-20 05:08:31 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 19 Dec 2016 23:07:42 -0500
|
|
|
|
Subject: [PATCH] Prevent Pathfinding out of World Border
|
|
|
|
|
|
|
|
This prevents Entities from trying to run outside of the World Border
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/NavigationAbstract.java b/src/main/java/net/minecraft/server/NavigationAbstract.java
|
2019-05-13 03:39:06 +02:00
|
|
|
index fe19167a1..6a1d5a899 100644
|
2016-12-20 05:08:31 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/NavigationAbstract.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/NavigationAbstract.java
|
2019-05-13 03:39:06 +02:00
|
|
|
@@ -98,6 +98,7 @@ public abstract class NavigationAbstract {
|
|
|
|
@Nullable protected PathEntity a(BlockPosition blockposition, double d0, double d1, double d2, int i, boolean flag) { return this.a(blockposition, null, d0, d1, d2, i, flag); }
|
|
|
|
@Nullable protected PathEntity a(BlockPosition blockposition, Entity target, double d0, double d1, double d2, int i, boolean flag) {
|
2019-04-27 08:26:04 +02:00
|
|
|
// Paper end
|
2016-12-20 05:08:31 +01:00
|
|
|
+ if (!getEntity().getWorld().getWorldBorder().isInBounds(blockposition)) return null; // Paper - don't path out of world border
|
2019-04-27 08:26:04 +02:00
|
|
|
if (!this.a()) {
|
2016-12-20 05:08:31 +01:00
|
|
|
return null;
|
|
|
|
} else if (this.c != null && !this.c.b() && blockposition.equals(this.q)) {
|
|
|
|
--
|
2019-04-22 23:36:14 +02:00
|
|
|
2.21.0
|
2016-12-20 05:08:31 +01:00
|
|
|
|