From b07adf23b114219bb48c49f4f0a1b7086b9b8a72 Mon Sep 17 00:00:00 2001 From: Bud Gidiere Date: Wed, 5 Aug 2020 15:19:42 -0500 Subject: [PATCH] new fix --- patches/server/0001-Yatopia-Server-Fixes.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/server/0001-Yatopia-Server-Fixes.patch b/patches/server/0001-Yatopia-Server-Fixes.patch index df1d5982..11f56165 100644 --- a/patches/server/0001-Yatopia-Server-Fixes.patch +++ b/patches/server/0001-Yatopia-Server-Fixes.patch @@ -33,7 +33,7 @@ index 572780ca665c0fb254cc7431af3dd7759a94f26c..00000000000000000000000000000000 - - new TimingsExport(listeners, parent, history).start(); diff --git a/src/main/java/com/destroystokyo/paper/PaperCommand.java b/src/main/java/com/destroystokyo/paper/PaperCommand.java -index f81bd67a323f2e72bdad76c52016993a0bf88307..a0fa11bb69a44969f9f95b8d4cefb4443bef2f4b 100644 +index f81bd67a323f2e72bdad76c52016993a0bf88307..98a898f8b8469969e5eb388edb818e519ff68681 100644 --- a/src/main/java/com/destroystokyo/paper/PaperCommand.java +++ b/src/main/java/com/destroystokyo/paper/PaperCommand.java @@ -439,18 +439,18 @@ public class PaperCommand extends Command { @@ -49,7 +49,7 @@ index f81bd67a323f2e72bdad76c52016993a0bf88307..a0fa11bb69a44969f9f95b8d4cefb444 MutablePair> info = list.computeIfAbsent(key, k -> MutablePair.of(0, Maps.newHashMap())); - ChunkCoordIntPair chunk = new ChunkCoordIntPair(e.chunkX, e.chunkZ); -+ ChunkCoordIntPair chunk = new ChunkCoordIntPair(entity.chunkX, entity.chunkZ; ++ ChunkCoordIntPair chunk = new ChunkCoordIntPair(entity.chunkX, entity.chunkZ); info.left++; info.right.put(chunk, info.right.getOrDefault(chunk, 0) + 1); - if (!chunkProviderServer.isInEntityTickingChunk(e)) {