aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0401-Mark-entities-as-being-ticked-when-notifying-navigat.patch
blob: 2f7cb2e155a812cc34a044062317dbc9fdfdbfcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From c13373f9e7045463c882bcfddcc39e2f1c6d6712 Mon Sep 17 00:00:00 2001
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
index 8b95da3da..6220af6b4 100644
--- a/src/main/java/net/minecraft/server/WorldServer.java
+++ b/src/main/java/net/minecraft/server/WorldServer.java
@@ -1337,6 +1337,7 @@ public class WorldServer extends World {
         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()) {
@@ -1347,6 +1348,7 @@ public class WorldServer extends World {
                 }
             }
 
+            this.tickingEntities = wasTicking; // Paper
         }
     }
 
-- 
2.23.0