2019-12-12 17:20:43 +01:00
|
|
|
From b2d086efee4196e70746de334a8c1d94383ea371 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-12-12 17:20:43 +01:00
|
|
|
index 73ecdd22e..c974c02e9 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-12-12 17:20:43 +01:00
|
|
|
- private boolean bw;
|
|
|
|
+ private boolean bw; public boolean isJohnny() { return bw; } public void setJohnny(boolean johnny) { bw = johnny; } // Paper - OBFHELPER
|
2019-05-05 10:33:44 +02:00
|
|
|
|
|
|
|
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-12-12 17:20:43 +01:00
|
|
|
index 951d47929..5ff957ced 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-12-12 17:20:43 +01:00
|
|
|
2.17.1
|
2018-10-12 09:09:53 +02:00
|
|
|
|