mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
20 lines
942 B
Diff
20 lines
942 B
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
|
||
|
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/server/EntityZombie.java b/src/main/java/net/minecraft/server/EntityZombie.java
|
||
|
index 24bc3e0f0..bf2bed002 100644
|
||
|
--- a/src/main/java/net/minecraft/server/EntityZombie.java
|
||
|
+++ b/src/main/java/net/minecraft/server/EntityZombie.java
|
||
|
@@ -0,0 +0,0 @@ public class EntityZombie extends EntityMonster {
|
||
|
++this.bI;
|
||
|
if (this.bI >= 600) {
|
||
|
this.startDrownedConversion(300);
|
||
|
+ this.lastTick = MinecraftServer.currentTick; // Paper - Make sure this is set at start of process - GH-1887
|
||
|
}
|
||
|
} else {
|
||
|
this.bI = -1;
|
||
|
--
|