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