mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 19:00:16 +01:00
39 lines
1.9 KiB
Diff
39 lines
1.9 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
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/world/entity/monster/EntityVindicator.java b/src/main/java/net/minecraft/world/entity/monster/EntityVindicator.java
|
||
|
index c181d5f5e6108ade54fc97c665897d1db5e90719..c45dcb56af95f3e87e292b92b697a336461f01bc 100644
|
||
|
--- a/src/main/java/net/minecraft/world/entity/monster/EntityVindicator.java
|
||
|
+++ b/src/main/java/net/minecraft/world/entity/monster/EntityVindicator.java
|
||
|
@@ -51,7 +51,7 @@ public class EntityVindicator extends EntityIllagerAbstract {
|
||
|
private static final Predicate<EnumDifficulty> b = (enumdifficulty) -> {
|
||
|
return enumdifficulty == EnumDifficulty.NORMAL || enumdifficulty == EnumDifficulty.HARD;
|
||
|
};
|
||
|
- private boolean bo;
|
||
|
+ private boolean bo; public boolean isJohnny() { return bo; } public void setJohnny(boolean johnny) { bo = johnny; } // Paper - OBFHELPER
|
||
|
|
||
|
public EntityVindicator(EntityTypes<? extends EntityVindicator> entitytypes, World world) {
|
||
|
super(entitytypes, world);
|
||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftVindicator.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftVindicator.java
|
||
|
index e793820e1ede4bd4d31e6fe12ca8189707674ffe..b128e8291f2d7652a98f1271d763e33afa5de9f7 100644
|
||
|
--- 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
|
||
|
}
|