mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
39 lines
1.8 KiB
Diff
39 lines
1.8 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/server/EntityVindicator.java b/src/main/java/net/minecraft/server/EntityVindicator.java
|
||
|
index 9c152b79164710d3d4175d0acbc9548d61390097..58315906b641ba46ce73b6fefc43ea333bb0a088 100644
|
||
|
--- a/src/main/java/net/minecraft/server/EntityVindicator.java
|
||
|
+++ b/src/main/java/net/minecraft/server/EntityVindicator.java
|
||
|
@@ -11,7 +11,7 @@ public class EntityVindicator extends EntityIllagerAbstract {
|
||
|
private static final Predicate<EnumDifficulty> b = (enumdifficulty) -> {
|
||
|
return enumdifficulty == EnumDifficulty.NORMAL || enumdifficulty == EnumDifficulty.HARD;
|
||
|
};
|
||
|
- private boolean bv;
|
||
|
+ private boolean bv; public boolean isJohnny() { return bv; } public void setJohnny(boolean johnny) { bv = 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 951d47929893fce38183b81cf4ec6a7d4204acd1..5ff957ced7a86f4fa3a0751b4eed5a6fdc525da4 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
|
||
|
}
|