From 71645db85f017bcab53ce78274eca622dd6af371 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 --- .../Configurable-Villages-loading-chunks-for-door-checks.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-Server-Patches/Configurable-Villages-loading-chunks-for-door-checks.patch b/Spigot-Server-Patches/Configurable-Villages-loading-chunks-for-door-checks.patch index 16e255db5..352e4a173 100644 --- a/Spigot-Server-Patches/Configurable-Villages-loading-chunks-for-door-checks.patch +++ b/Spigot-Server-Patches/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