2019-10-20 11:03:39 +02:00
|
|
|
From b117edd7ceca8c12db41bab25d92b3f5ad64d3ec Mon Sep 17 00:00:00 2001
|
2019-07-28 01:52:13 +02: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
|
2019-10-20 11:03:39 +02:00
|
|
|
index 0761f705be..5df9b0ffda 100644
|
2019-07-28 01:52:13 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
2019-10-20 11:03:39 +02:00
|
|
|
@@ -1371,6 +1371,7 @@ public class WorldServer extends World {
|
2019-07-28 01:52:13 +02:00
|
|
|
VoxelShape voxelshape1 = iblockdata1.getCollisionShape(this, blockposition);
|
|
|
|
|
|
|
|
if (VoxelShapes.c(voxelshape, voxelshape1, OperatorBoolean.NOT_SAME)) {
|
|
|
|
+ boolean wasTicking = this.tickingEntities; this.tickingEntities = true; // Paper
|
|
|
|
Iterator iterator = this.H.iterator();
|
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
2019-10-20 11:03:39 +02:00
|
|
|
@@ -1381,6 +1382,7 @@ public class WorldServer extends World {
|
2019-07-28 01:52:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ this.tickingEntities = wasTicking; // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2019-10-20 11:03:39 +02:00
|
|
|
2.22.1
|
2019-07-28 01:52:13 +02:00
|
|
|
|