Paper/patches/server/0274-Add-more-Zombie-API.patch

118 lines
4.4 KiB
Diff
Raw Normal View History

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: BillyGalbreath <Blake.Galbreath@GMail.com>
Date: Sun, 7 Oct 2018 04:29:59 -0500
Subject: [PATCH] Add more Zombie API
== AT ==
public net.minecraft.world.entity.monster.Zombie isSunSensitive()Z
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/net/minecraft/world/entity/monster/Zombie.java b/src/main/java/net/minecraft/world/entity/monster/Zombie.java
2024-04-25 06:38:28 +02:00
index c71d4f91df7ec1cf26888b00fac444bccbbe472e..2d6cf6ea1717b28871c40de69120336c59a4d347 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/entity/monster/Zombie.java
+++ b/src/main/java/net/minecraft/world/entity/monster/Zombie.java
2024-04-24 07:43:09 +02:00
@@ -93,6 +93,7 @@ public class Zombie extends Monster {
2021-06-11 14:02:28 +02:00
private int inWaterTime;
public int conversionTime;
private int lastTick = MinecraftServer.currentTick; // CraftBukkit - add field
+ private boolean shouldBurnInDay = true; // Paper - Add more Zombie API
2021-06-11 14:02:28 +02:00
public Zombie(EntityType<? extends Zombie> type, Level world) {
super(type, world);
2024-04-24 07:43:09 +02:00
@@ -261,6 +262,12 @@ public class Zombie extends Monster {
2021-06-11 14:02:28 +02:00
super.aiStep();
}
+ // Paper start - Add more Zombie API
2021-06-11 14:02:28 +02:00
+ public void stopDrowning() {
+ this.conversionTime = -1;
+ this.getEntityData().set(Zombie.DATA_DROWNED_CONVERSION_ID, false);
+ }
+ // Paper end - Add more Zombie API
2021-06-11 14:02:28 +02:00
public void startUnderWaterConversion(int ticksUntilWaterConversion) {
this.lastTick = MinecraftServer.currentTick; // CraftBukkit
this.conversionTime = ticksUntilWaterConversion;
2024-04-24 07:43:09 +02:00
@@ -290,9 +297,15 @@ public class Zombie extends Monster {
2021-06-11 14:02:28 +02:00
}
2021-06-16 00:24:12 +02:00
public boolean isSunSensitive() {
2021-06-11 14:02:28 +02:00
- return true;
+ return this.shouldBurnInDay; // Paper - Add more Zombie API
2021-06-13 10:26:58 +02:00
}
+ // Paper start - Add more Zombie API
2021-06-11 14:02:28 +02:00
+ public void setShouldBurnInDay(boolean shouldBurnInDay) {
+ this.shouldBurnInDay = shouldBurnInDay;
2021-06-13 10:26:58 +02:00
+ }
+ // Paper end - Add more Zombie API
2021-06-13 10:26:58 +02:00
+
2021-06-11 14:02:28 +02:00
@Override
public boolean hurt(DamageSource source, float amount) {
2021-06-13 10:26:58 +02:00
if (!super.hurt(source, amount)) {
2024-04-24 07:43:09 +02:00
@@ -406,6 +419,7 @@ public class Zombie extends Monster {
2021-06-13 10:26:58 +02:00
nbt.putBoolean("CanBreakDoors", this.canBreakDoors());
nbt.putInt("InWaterTime", this.isInWater() ? this.inWaterTime : -1);
nbt.putInt("DrownedConversionTime", this.isUnderWaterConverting() ? this.conversionTime : -1);
+ nbt.putBoolean("Paper.ShouldBurnInDay", this.shouldBurnInDay); // Paper - Add more Zombie API
2021-06-11 14:02:28 +02:00
}
@Override
2024-04-24 07:43:09 +02:00
@@ -417,6 +431,11 @@ public class Zombie extends Monster {
2021-06-13 10:26:58 +02:00
if (nbt.contains("DrownedConversionTime", 99) && nbt.getInt("DrownedConversionTime") > -1) {
this.startUnderWaterConversion(nbt.getInt("DrownedConversionTime"));
2021-06-11 14:02:28 +02:00
}
+ // Paper start - Add more Zombie API
2021-06-13 10:26:58 +02:00
+ if (nbt.contains("Paper.ShouldBurnInDay")) {
+ this.shouldBurnInDay = nbt.getBoolean("Paper.ShouldBurnInDay");
2021-06-11 14:02:28 +02:00
+ }
+ // Paper end - Add more Zombie API
2021-06-13 10:26:58 +02:00
2021-06-11 14:02:28 +02:00
}
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
2023-12-05 18:20:55 +01:00
index 99dcaa827831a40ea46453f502d8b6ccb107f0ad..4412c913123f7521f449c98b60378e8d3b1671ce 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
@@ -87,6 +87,42 @@ public class CraftZombie extends CraftMonster implements Zombie {
2021-06-11 14:02:28 +02:00
@Override
public void setAgeLock(boolean b) {
}
+ // Paper start
+ @Override
+ public boolean isDrowning() {
+ return getHandle().isUnderWaterConverting();
+ }
+
+ @Override
+ public void startDrowning(int drownedConversionTime) {
+ getHandle().startUnderWaterConversion(drownedConversionTime);
+ }
+
+ @Override
+ public void stopDrowning() {
+ getHandle().stopDrowning();
+ }
+
+ @Override
+ public boolean shouldBurnInDay() {
2021-06-16 00:24:12 +02:00
+ return getHandle().isSunSensitive();
2021-06-11 14:02:28 +02:00
+ }
+
+ @Override
+ public boolean isArmsRaised() {
+ return getHandle().isAggressive();
+ }
+
+ @Override
+ public void setArmsRaised(final boolean raised) {
+ getHandle().setAggressive(raised);
+ }
+
+ @Override
+ public void setShouldBurnInDay(boolean shouldBurnInDay) {
+ getHandle().setShouldBurnInDay(shouldBurnInDay);
+ }
+ // Paper end
@Override
public boolean getAgeLock() {