2019-12-13 21:41:01 +01:00
|
|
|
From 11ef54b9b193bd1ce013dac43eb18c7d0e93a6a5 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-12-13 02:18:18 +01:00
|
|
|
index 733f3e10e..049d4ef4e 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-12-13 02:18:18 +01: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
|
2019-12-12 17:20:43 +01:00
|
|
|
Iterator iterator = this.navigators.iterator();
|
2019-07-28 01:52:13 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
2019-12-13 02:18:18 +01:00
|
|
|
@@ -1381,6 +1382,7 @@ public class WorldServer extends World {
|
2019-07-28 01:52:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ this.tickingEntities = wasTicking; // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2019-12-13 17:22:16 +01:00
|
|
|
2.24.1
|
2019-07-28 01:52:13 +02:00
|
|
|
|