2020-05-06 09:48:49 +00:00
|
|
|
From 0000000000000000000000000000000000000000 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-06-25 23:38:24 +00:00
|
|
|
index 789fd7d3d7679408d11a20cca6db96ecb86a067d..2738d61709a956e83ab7b4e05063a99bcbb7e01b 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-06-25 23:38:24 +00:00
|
|
|
@@ -1320,6 +1320,7 @@ public class WorldServer extends World implements GeneratorAccessSeed {
|
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-06-25 23:38:24 +00:00
|
|
|
@@ -1330,6 +1331,7 @@ public class WorldServer extends World implements GeneratorAccessSeed {
|
2019-07-27 23:52:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ this.tickingEntities = wasTicking; // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|