2020-04-13 04:55:43 +02:00
|
|
|
From 4017cfdb78a0758a5b0310724c0d3eab3be0cc99 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
|
2020-04-13 04:55:43 +02:00
|
|
|
index 00379f0a6..a79ccad0b 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
|
2020-04-13 04:55:43 +02:00
|
|
|
@@ -1412,6 +1412,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
|
2019-12-12 17:20:43 +01:00
|
|
|
Iterator iterator = this.navigators.iterator();
|
2019-07-28 01:52:13 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
2020-04-13 04:55:43 +02:00
|
|
|
@@ -1422,6 +1423,7 @@ public class WorldServer extends World {
|
2019-07-28 01:52:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ this.tickingEntities = wasTicking; // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2020-03-31 08:52:12 +02:00
|
|
|
2.25.1
|
2019-07-28 01:52:13 +02:00
|
|
|
|