2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-09-25 16:54:06 +02:00
|
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Sun, 23 Sep 2018 20:59:53 -0500
|
|
|
|
Subject: [PATCH] Honor EntityAgeable.ageLock
|
|
|
|
|
|
|
|
|
2021-03-16 08:19:45 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/EntityAgeable.java b/src/main/java/net/minecraft/world/entity/EntityAgeable.java
|
|
|
|
index ea356ff0f91083195899cc2bb84b2fde504163b4..850135582c41893823c43a78a016c7791755b8b5 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/entity/EntityAgeable.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/EntityAgeable.java
|
|
|
|
@@ -82,6 +82,7 @@ public abstract class EntityAgeable extends EntityCreature {
|
2018-09-25 16:54:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setAge(int i, boolean flag) {
|
|
|
|
+ if (ageLocked) return; // Paper - GH-1459
|
|
|
|
int j = this.getAge();
|
|
|
|
int k = j;
|
|
|
|
|