diff options
Diffstat (limited to 'Spigot-Server-Patches-Unmapped/0332-Set-Zombie-last-tick-at-start-of-drowning-process.patch')
-rw-r--r-- | Spigot-Server-Patches-Unmapped/0332-Set-Zombie-last-tick-at-start-of-drowning-process.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Spigot-Server-Patches-Unmapped/0332-Set-Zombie-last-tick-at-start-of-drowning-process.patch b/Spigot-Server-Patches-Unmapped/0332-Set-Zombie-last-tick-at-start-of-drowning-process.patch new file mode 100644 index 0000000000..30e7bd3924 --- /dev/null +++ b/Spigot-Server-Patches-Unmapped/0332-Set-Zombie-last-tick-at-start-of-drowning-process.patch @@ -0,0 +1,19 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Zach Brown <[email protected]> +Date: Mon, 4 Mar 2019 02:23:28 -0500 +Subject: [PATCH] Set Zombie last tick at start of drowning process + +Fixes GH-1887 + +diff --git a/src/main/java/net/minecraft/world/entity/monster/EntityZombie.java b/src/main/java/net/minecraft/world/entity/monster/EntityZombie.java +index 79d34b0296f88e5b4fe0351fe2483fc0128deabc..f406826945dd752e6528743a0c8cad3cfdfc4a95 100644 +--- a/src/main/java/net/minecraft/world/entity/monster/EntityZombie.java ++++ b/src/main/java/net/minecraft/world/entity/monster/EntityZombie.java +@@ -223,6 +223,7 @@ public class EntityZombie extends EntityMonster { + ++this.bt; + if (this.bt >= 600) { + this.startDrownedConversion(300); ++ this.lastTick = MinecraftServer.currentTick; // Paper - Make sure this is set at start of process - GH-1887 + } + } else { + this.bt = -1; |