From 68cacfe830a75c6264337f15df784b6010bde789 Mon Sep 17 00:00:00 2001 From: Spottedleaf Date: Thu, 11 Jul 2024 08:57:31 -0700 Subject: [PATCH] Increment ChunkHolderManager current tick This is an oversight from copying from Folia. The current tick should be incremented so that incremental autosave can properly occur. --- patches/server/Chunk-System-Starlight-from-Moonrise.patch | 2 ++ 1 file changed, 2 insertions(+) diff --git a/patches/server/Chunk-System-Starlight-from-Moonrise.patch b/patches/server/Chunk-System-Starlight-from-Moonrise.patch index 6f6619ebf3..e3fcda1cb7 100644 --- a/patches/server/Chunk-System-Starlight-from-Moonrise.patch +++ b/patches/server/Chunk-System-Starlight-from-Moonrise.patch @@ -9430,6 +9430,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + } + + public void tick() { ++ ++this.currentTick; ++ + final int sectionShift = ((ChunkSystemServerLevel)this.world).moonrise$getRegionChunkShift(); + + final Predicate> expireNow = (final Ticket ticket) -> {