From 77c6bafe46e710f7abed1b16d55ba7f982b9305e Mon Sep 17 00:00:00 2001 From: Aikar Date: Thu, 11 Oct 2018 21:54:15 -0400 Subject: [PATCH] Missed a +1 on village doors --- ...1-Configurable-Villages-loading-chunks-for-door-checks.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-Server-Patches/0261-Configurable-Villages-loading-chunks-for-door-checks.patch b/Spigot-Server-Patches/0261-Configurable-Villages-loading-chunks-for-door-checks.patch index cc158cfbd..55bd6323c 100644 --- a/Spigot-Server-Patches/0261-Configurable-Villages-loading-chunks-for-door-checks.patch +++ b/Spigot-Server-Patches/0261-Configurable-Villages-loading-chunks-for-door-checks.patch @@ -80,7 +80,7 @@ index bda67faefe..5b56ae1818 100644 VillageDoor villagedoor = (VillageDoor) iterator.next(); + // Paper start - don't remove doors from unloaded chunks + if (!getWorld().isLoaded(villagedoor.getPosition())) { -+ villagedoor.setLastSeen(villagedoor.getLastSeen()); ++ villagedoor.setLastSeen(villagedoor.getLastSeen() + 1); + continue; + } + // Paper end