2020-02-11 04:35:46 +00:00
|
|
|
From f92c51087d3f8bf9ea9eeabe608b459a4e18e3a6 Mon Sep 17 00:00:00 2001
|
2019-07-27 23:52:13 +00:00
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Sun, 28 Jul 2019 00:51:11 +0100
|
|
|
|
Subject: [PATCH] Mark entities as being ticked when notifying navigation
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
2020-02-11 04:35:46 +00:00
|
|
|
index bc789fc29..27dcc2528 100644
|
2019-07-27 23:52:13 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
2020-01-28 00:16:53 +00:00
|
|
|
@@ -1392,6 +1392,7 @@ public class WorldServer extends World {
|
2019-07-27 23:52:13 +00:00
|
|
|
VoxelShape voxelshape1 = iblockdata1.getCollisionShape(this, blockposition);
|
|
|
|
|
|
|
|
if (VoxelShapes.c(voxelshape, voxelshape1, OperatorBoolean.NOT_SAME)) {
|
|
|
|
+ boolean wasTicking = this.tickingEntities; this.tickingEntities = true; // Paper
|
2019-12-12 16:20:43 +00:00
|
|
|
Iterator iterator = this.navigators.iterator();
|
2019-07-27 23:52:13 +00:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
2020-01-28 00:16:53 +00:00
|
|
|
@@ -1402,6 +1403,7 @@ public class WorldServer extends World {
|
2019-07-27 23:52:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ this.tickingEntities = wasTicking; // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2020-02-11 04:35:46 +00:00
|
|
|
2.25.0
|
2019-07-27 23:52:13 +00:00
|
|
|
|