Paper/nms-patches/EntityFish.patch
2018-10-23 06:00:00 +11:00

20 lines
581 B
Diff

--- a/net/minecraft/server/EntityFish.java
+++ b/net/minecraft/server/EntityFish.java
@@ -29,7 +29,7 @@
}
public boolean isTypeNotPersistent() {
- return !this.isFromBucket() && !this.hasCustomName();
+ return true; // CraftBukkit
}
public int dg() {
@@ -47,6 +47,7 @@
public void setFromBucket(boolean flag) {
this.datawatcher.set(EntityFish.a, Boolean.valueOf(flag));
+ this.persistent = this.isPersistent(); // CraftBukkit - SPIGOT-4106 update persistence
}
public void b(NBTTagCompound nbttagcompound) {