aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0383-Don-t-tick-dead-players.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0383-Don-t-tick-dead-players.patch')
-rw-r--r--patches/server/0383-Don-t-tick-dead-players.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/patches/server/0383-Don-t-tick-dead-players.patch b/patches/server/0383-Don-t-tick-dead-players.patch
new file mode 100644
index 0000000000..915abcb530
--- /dev/null
+++ b/patches/server/0383-Don-t-tick-dead-players.patch
@@ -0,0 +1,21 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Aikar <[email protected]>
+Date: Thu, 2 Apr 2020 17:16:48 -0400
+Subject: [PATCH] Don't tick dead players
+
+Causes sync chunk loads and who knows what all else.
+This is safe because Spectators are skipped in unloaded chunks too in vanilla.
+
+diff --git a/src/main/java/net/minecraft/server/level/ServerPlayer.java b/src/main/java/net/minecraft/server/level/ServerPlayer.java
+index f0c9610fe9e2475c13f897cb2d77978a0caa53a2..249f49a551ea94705a4f5dfc687fcefe3e789a07 100644
+--- a/src/main/java/net/minecraft/server/level/ServerPlayer.java
++++ b/src/main/java/net/minecraft/server/level/ServerPlayer.java
+@@ -641,7 +641,7 @@ public class ServerPlayer extends Player {
+
+ public void doTick() {
+ try {
+- if (!this.isSpectator() || !this.touchingUnloadedChunk()) {
++ if (valid && !this.isSpectator() || !this.touchingUnloadedChunk()) { // Paper - don't tick dead players that are not in the world currently (pending respawn)
+ super.tick();
+ }
+