summaryrefslogtreecommitdiffstats
path: root/nms-patches/EntityFish.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/EntityFish.patch')
-rw-r--r--nms-patches/EntityFish.patch11
1 files changed, 10 insertions, 1 deletions
diff --git a/nms-patches/EntityFish.patch b/nms-patches/EntityFish.patch
index c4b05830..0fe7401b 100644
--- a/nms-patches/EntityFish.patch
+++ b/nms-patches/EntityFish.patch
@@ -1,10 +1,19 @@
--- a/net/minecraft/server/EntityFish.java
+++ b/net/minecraft/server/EntityFish.java
+@@ -37,7 +37,7 @@
+ }
+
+ protected boolean isTypeNotPersistent() {
+- return !this.isFromBucket() && !this.hasCustomName();
++ return true; // CraftBukkit
+ }
+
+ public boolean l() {
@@ -71,6 +71,7 @@
public void setFromBucket(boolean flag) {
this.datawatcher.set(EntityFish.b, Boolean.valueOf(flag));
-+ this.persistent = !this.isTypeNotPersistent(); // CraftBukkit - SPIGOT-4106 update persistence
++ this.persistent = this.isPersistent(); // CraftBukkit - SPIGOT-4106 update persistence
}
public void b(NBTTagCompound nbttagcompound) {