diff options
Diffstat (limited to 'Spigot-Server-Patches/0360-Honor-EntityAgeable.ageLock.patch')
-rw-r--r-- | Spigot-Server-Patches/0360-Honor-EntityAgeable.ageLock.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0360-Honor-EntityAgeable.ageLock.patch b/Spigot-Server-Patches/0360-Honor-EntityAgeable.ageLock.patch new file mode 100644 index 0000000000..580690ca5f --- /dev/null +++ b/Spigot-Server-Patches/0360-Honor-EntityAgeable.ageLock.patch @@ -0,0 +1,21 @@ +From 4e97187ddd0422e3eaaea5715cae3db866f7c0f6 Mon Sep 17 00:00:00 2001 +From: BillyGalbreath <[email protected]> +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 2af1ac7028..aa54e380e4 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.21.0 + |