From e1ba203df8589c68ac669f5686a1297121bfc3b9 Mon Sep 17 00:00:00 2001 From: BillyGalbreath Date: Tue, 25 Sep 2018 09:54:06 -0500 Subject: [PATCH] Honor EntityAgeable#ageLock (#1481) * test * Obfuscation helper * Fix #1459 --- .../0383-Honor-EntityAgeable.ageLock.patch | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Spigot-Server-Patches/0383-Honor-EntityAgeable.ageLock.patch diff --git a/Spigot-Server-Patches/0383-Honor-EntityAgeable.ageLock.patch b/Spigot-Server-Patches/0383-Honor-EntityAgeable.ageLock.patch new file mode 100644 index 0000000000..37076ef88c --- /dev/null +++ b/Spigot-Server-Patches/0383-Honor-EntityAgeable.ageLock.patch @@ -0,0 +1,21 @@ +From f77b542b755eef4f372e17a29f5604f43c6b8ea2 Mon Sep 17 00:00:00 2001 +From: BillyGalbreath +Date: Sun, 23 Sep 2018 20:59:53 -0500 +Subject: [PATCH] Honor EntityAgeable.ageLock + + +diff --git a/src/main/java/net/minecraft/server/EntityAgeable.java b/src/main/java/net/minecraft/server/EntityAgeable.java +index 1d7c998aa..a11bdaadc 100644 +--- a/src/main/java/net/minecraft/server/EntityAgeable.java ++++ b/src/main/java/net/minecraft/server/EntityAgeable.java +@@ -82,6 +82,7 @@ public abstract class EntityAgeable extends EntityCreature { + } + + public void setAge(int i, boolean flag) { ++ if (ageLocked) return; // Paper - GH-1459 + int j = this.getAge(); + int k = j; + +-- +2.19.0 +