2019-07-20 06:01:24 +02:00
|
|
|
From 186a68036e63b03e928028f0bdd395b904103c7e Mon Sep 17 00:00:00 2001
|
2018-10-12 09:09:53 +02:00
|
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Fri, 12 Oct 2018 01:37:22 -0500
|
|
|
|
Subject: [PATCH] Here's Johnny!
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityVindicator.java b/src/main/java/net/minecraft/server/EntityVindicator.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index 06918b8c91..ffbd6e9269 100644
|
2018-10-12 09:09:53 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityVindicator.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityVindicator.java
|
2019-05-05 10:33:44 +02:00
|
|
|
@@ -11,7 +11,7 @@ public class EntityVindicator extends EntityIllagerAbstract {
|
|
|
|
private static final Predicate<EnumDifficulty> b = (enumdifficulty) -> {
|
|
|
|
return enumdifficulty == EnumDifficulty.NORMAL || enumdifficulty == EnumDifficulty.HARD;
|
2018-10-12 09:09:53 +02:00
|
|
|
};
|
2019-05-05 10:33:44 +02:00
|
|
|
- private boolean bz;
|
|
|
|
+ private boolean bz; public boolean isJohnny() { return bz; } public void setJohnny(boolean johnny) { bz = johnny; } // Paper - OBFHELPER
|
|
|
|
|
|
|
|
public EntityVindicator(EntityTypes<? extends EntityVindicator> entitytypes, World world) {
|
|
|
|
super(entitytypes, world);
|
2018-10-12 09:09:53 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftVindicator.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftVindicator.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index 951d479298..5ff957ced7 100644
|
2018-10-12 09:09:53 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftVindicator.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftVindicator.java
|
|
|
|
@@ -25,4 +25,14 @@ public class CraftVindicator extends CraftIllager implements Vindicator {
|
|
|
|
public EntityType getType() {
|
|
|
|
return EntityType.VINDICATOR;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ public boolean isJohnny() {
|
|
|
|
+ return getHandle().isJohnny();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setJohnny(boolean johnny) {
|
|
|
|
+ getHandle().setJohnny(johnny);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2018-10-12 09:09:53 +02:00
|
|
|
|