2019-07-16 22:09:32 +00:00
|
|
|
From 55841be6ae2c51e34ba14f337cbbf0ff7c352696 Mon Sep 17 00:00:00 2001
|
2016-12-20 04:08:31 +00: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-07-16 22:09:32 +00:00
|
|
|
index 8b05b8acd..65b38d75b 100644
|
2016-12-20 04:08:31 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/NavigationAbstract.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/NavigationAbstract.java
|
2019-05-27 06:14:14 +00:00
|
|
|
@@ -95,6 +95,7 @@ public abstract class NavigationAbstract {
|
2019-05-14 02:20:58 +00:00
|
|
|
@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); }
|
2019-05-13 01:39:06 +00:00
|
|
|
@Nullable protected PathEntity a(BlockPosition blockposition, Entity target, double d0, double d1, double d2, int i, boolean flag) {
|
2016-12-20 04:08:31 +00:00
|
|
|
+ if (!getEntity().getWorld().getWorldBorder().isInBounds(blockposition)) return null; // Paper - don't path out of world border
|
2019-05-14 02:20:58 +00:00
|
|
|
if (this.a.locY < 0.0D) {
|
2016-12-20 04:08:31 +00:00
|
|
|
return null;
|
2019-05-14 02:20:58 +00:00
|
|
|
} else if (!this.a()) {
|
2016-12-20 04:08:31 +00:00
|
|
|
--
|
2019-06-25 19:18:50 +00:00
|
|
|
2.22.0
|
2016-12-20 04:08:31 +00:00
|
|
|
|