2019-05-05 11:12:32 +00:00
|
|
|
From 690ee0b9cbb926fcb9509eb8877402930a77a9d4 Mon Sep 17 00:00:00 2001
|
2018-11-25 17:51:11 +00:00
|
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Sun, 7 Oct 2018 04:29:59 -0500
|
|
|
|
Subject: [PATCH] Add more Zombie API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityZombie.java b/src/main/java/net/minecraft/server/EntityZombie.java
|
2019-05-05 11:12:32 +00:00
|
|
|
index 92d1cd851..f8baaea03 100644
|
2018-11-25 17:51:11 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityZombie.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityZombie.java
|
2019-05-05 11:12:32 +00:00
|
|
|
@@ -31,6 +31,7 @@ public class EntityZombie extends EntityMonster {
|
|
|
|
private int bF;
|
|
|
|
public int drownedConversionTime;
|
2018-11-25 17:51:11 +00:00
|
|
|
private int lastTick = MinecraftServer.currentTick; // CraftBukkit - add field
|
|
|
|
+ private boolean shouldBurnInDay = true; // Paper
|
|
|
|
|
2019-05-05 11:12:32 +00:00
|
|
|
public EntityZombie(EntityTypes<? extends EntityZombie> entitytypes, World world) {
|
2018-11-25 17:51:11 +00:00
|
|
|
super(entitytypes, world);
|
2019-05-05 11:12:32 +00:00
|
|
|
@@ -78,6 +79,7 @@ public class EntityZombie extends EntityMonster {
|
2019-01-01 03:15:55 +00:00
|
|
|
this.getDataWatcher().register(EntityZombie.DROWN_CONVERTING, false);
|
2018-11-25 17:51:11 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 10:09:55 +00:00
|
|
|
+ public boolean isDrowning() { return isDrownConverting(); } // Paper - OBFHELPER
|
|
|
|
public boolean isDrownConverting() {
|
2019-01-01 03:15:55 +00:00
|
|
|
return (Boolean) this.getDataWatcher().get(EntityZombie.DROWN_CONVERTING);
|
2018-11-25 17:51:11 +00:00
|
|
|
}
|
2019-05-05 11:12:32 +00:00
|
|
|
@@ -209,6 +211,13 @@ public class EntityZombie extends EntityMonster {
|
2019-01-01 03:15:55 +00:00
|
|
|
this.getDataWatcher().set(EntityZombie.DROWN_CONVERTING, true);
|
2018-11-25 17:51:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ public void stopDrowning() {
|
2018-12-08 10:09:55 +00:00
|
|
|
+ this.drownedConversionTime = -1;
|
2019-05-05 11:12:32 +00:00
|
|
|
+ this.getDataWatcher().set(EntityZombie.DROWN_CONVERTING, false);
|
2018-11-25 17:51:11 +00:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2019-05-05 11:12:32 +00:00
|
|
|
protected void eb() {
|
|
|
|
this.b(EntityTypes.DROWNED);
|
2018-11-25 17:51:11 +00:00
|
|
|
this.world.a((EntityHuman) null, 1040, new BlockPosition((int) this.locX, (int) this.locY, (int) this.locZ), 0);
|
2019-05-05 11:12:32 +00:00
|
|
|
@@ -253,10 +262,17 @@ public class EntityZombie extends EntityMonster {
|
2018-11-25 17:51:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:12:32 +00:00
|
|
|
+ public boolean shouldBurnInDay() { return J_(); } // Paper - OBFHELPER
|
|
|
|
protected boolean J_() {
|
2018-11-25 17:51:11 +00:00
|
|
|
- return true;
|
2019-05-05 11:12:32 +00:00
|
|
|
+ return shouldBurnInDay;
|
2018-11-25 17:51:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ public void setShouldBurnInDay(boolean shouldBurnInDay) {
|
|
|
|
+ this.shouldBurnInDay = shouldBurnInDay;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2019-05-05 11:12:32 +00:00
|
|
|
@Override
|
2018-11-25 17:51:11 +00:00
|
|
|
public boolean damageEntity(DamageSource damagesource, float f) {
|
|
|
|
if (super.damageEntity(damagesource, f)) {
|
2019-05-05 11:12:32 +00:00
|
|
|
@@ -374,6 +390,7 @@ public class EntityZombie extends EntityMonster {
|
|
|
|
nbttagcompound.setBoolean("CanBreakDoors", this.ef());
|
|
|
|
nbttagcompound.setInt("InWaterTime", this.isInWater() ? this.bF : -1);
|
2018-12-08 10:09:55 +00:00
|
|
|
nbttagcompound.setInt("DrownedConversionTime", this.isDrownConverting() ? this.drownedConversionTime : -1);
|
2018-11-25 17:51:11 +00:00
|
|
|
+ nbttagcompound.setBoolean("Paper.ShouldBurnInDay", shouldBurnInDay); // Paper
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:12:32 +00:00
|
|
|
@Override
|
|
|
|
@@ -388,7 +405,11 @@ public class EntityZombie extends EntityMonster {
|
2018-11-25 17:51:11 +00:00
|
|
|
if (nbttagcompound.hasKeyOfType("DrownedConversionTime", 99) && nbttagcompound.getInt("DrownedConversionTime") > -1) {
|
2019-01-01 03:15:55 +00:00
|
|
|
this.startDrownedConversion(nbttagcompound.getInt("DrownedConversionTime"));
|
2018-11-25 17:51:11 +00:00
|
|
|
}
|
|
|
|
-
|
|
|
|
+ // Paper start
|
|
|
|
+ if (nbttagcompound.hasKey("Paper.ShouldBurnInDay")) {
|
|
|
|
+ shouldBurnInDay = nbttagcompound.getBoolean("Paper.ShouldBurnInDay");
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:12:32 +00:00
|
|
|
@Override
|
2018-11-25 17:51:11 +00:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
|
2019-05-05 11:12:32 +00:00
|
|
|
index c28ccd0d9..442befba8 100644
|
2018-11-25 17:51:11 +00:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
|
2019-05-05 11:12:32 +00:00
|
|
|
@@ -76,4 +76,26 @@ public class CraftZombie extends CraftMonster implements Zombie {
|
2019-01-01 03:15:55 +00:00
|
|
|
getHandle().startDrownedConversion(time);
|
2018-12-17 05:18:06 +00:00
|
|
|
}
|
2018-11-25 17:51:11 +00:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ public boolean isDrowning() {
|
|
|
|
+ return getHandle().isDrowning();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void startDrowning(int drownedConversionTime) {
|
2019-01-01 03:15:55 +00:00
|
|
|
+ getHandle().startDrownedConversion(drownedConversionTime);
|
2018-11-25 17:51:11 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void stopDrowning() {
|
|
|
|
+ getHandle().stopDrowning();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public boolean shouldBurnInDay() {
|
|
|
|
+ return getHandle().shouldBurnInDay();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setShouldBurnInDay(boolean shouldBurnInDay) {
|
|
|
|
+ getHandle().setShouldBurnInDay(shouldBurnInDay);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
--
|
2019-05-05 11:12:32 +00:00
|
|
|
2.20.1
|
2018-11-25 17:51:11 +00:00
|
|
|
|