Paper/nms-patches/EntityHorseAbstract.patch

111 lines
3.7 KiB
Diff
Raw Normal View History

2016-11-17 02:41:03 +01:00
--- a/net/minecraft/server/EntityHorseAbstract.java
+++ b/net/minecraft/server/EntityHorseAbstract.java
@@ -6,6 +6,7 @@
2016-02-29 22:32:46 +01:00
import java.util.UUID;
2018-07-15 02:00:00 +02:00
import java.util.function.Predicate;
2016-05-10 13:47:39 +02:00
import javax.annotation.Nullable;
+import org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason; // CraftBukkit
2016-11-17 02:41:03 +01:00
public abstract class EntityHorseAbstract extends EntityAnimal implements IInventoryListener, IJumpable {
2018-07-15 02:00:00 +02:00
@@ -33,6 +34,7 @@
private float bY;
protected boolean bK = true;
protected int bL;
+ public int maxDomestication = 100; // CraftBukkit - store max domestication value
2018-07-15 02:00:00 +02:00
protected EntityHorseAbstract(EntityTypes<?> entitytypes, World world) {
super(entitytypes, world);
@@ -212,7 +214,7 @@
2017-05-14 04:00:00 +02:00
public void loadChest() {
InventoryHorseChest inventoryhorsechest = this.inventoryChest;
2018-07-15 02:00:00 +02:00
- this.inventoryChest = new InventoryHorseChest(this.getDisplayName(), this.dA());
+ this.inventoryChest = new InventoryHorseChest(this.getDisplayName(), this.dA(), this); // CraftBukkit
this.inventoryChest.a(this.getCustomName());
if (inventoryhorsechest != null) {
inventoryhorsechest.b(this);
2018-07-15 02:00:00 +02:00
@@ -348,7 +350,7 @@
}
public int getMaxDomestication() {
- return 100;
+ return this.maxDomestication; // CraftBukkit - return stored max domestication instead of 100
}
2018-07-15 02:00:00 +02:00
protected float cC() {
@@ -408,7 +410,7 @@
2016-11-17 02:41:03 +01:00
}
2016-11-17 02:41:03 +01:00
if (this.getHealth() < this.getMaxHealth() && f > 0.0F) {
- this.heal(f);
+ this.heal(f, RegainReason.EATING); // CraftBukkit
flag = true;
}
2018-07-15 02:00:00 +02:00
@@ -459,7 +461,7 @@
2016-04-26 01:26:20 +02:00
}
public void die(DamageSource damagesource) {
2016-04-26 01:26:20 +02:00
- super.die(damagesource);
+ // super.die(damagesource); // Moved down
2016-11-17 02:41:03 +01:00
if (!this.world.isClientSide && this.inventoryChest != null) {
for (int i = 0; i < this.inventoryChest.getSize(); ++i) {
ItemStack itemstack = this.inventoryChest.getItem(i);
2018-07-15 02:00:00 +02:00
@@ -470,6 +472,7 @@
2016-11-17 02:41:03 +01:00
}
}
2016-04-26 01:26:20 +02:00
+ super.die(damagesource); // CraftBukkit
}
2018-07-15 02:00:00 +02:00
public void k() {
@@ -480,7 +483,7 @@
super.k();
2015-02-26 23:41:06 +01:00
if (!this.world.isClientSide) {
if (this.random.nextInt(900) == 0 && this.deathTicks == 0) {
- this.heal(1.0F);
+ this.heal(1.0F, RegainReason.REGEN); // CraftBukkit
}
2018-07-15 02:00:00 +02:00
if (this.dY()) {
@@ -716,6 +719,7 @@
2016-02-29 22:32:46 +01:00
if (this.getOwnerUUID() != null) {
nbttagcompound.setString("OwnerUUID", this.getOwnerUUID().toString());
}
+ nbttagcompound.setInt("Bukkit.MaxDomestication", this.maxDomestication); // CraftBukkit
2016-02-29 22:32:46 +01:00
2016-11-17 02:41:03 +01:00
if (!this.inventoryChest.getItem(0).isEmpty()) {
nbttagcompound.set("SaddleItem", this.inventoryChest.getItem(0).save(new NBTTagCompound()));
2018-07-15 02:00:00 +02:00
@@ -742,6 +746,11 @@
2016-11-17 02:41:03 +01:00
if (!s.isEmpty()) {
2016-02-29 22:32:46 +01:00
this.setOwnerUUID(UUID.fromString(s));
}
+ // CraftBukkit start
+ if (nbttagcompound.hasKey("Bukkit.MaxDomestication")) {
+ this.maxDomestication = nbttagcompound.getInt("Bukkit.MaxDomestication");
+ }
+ // CraftBukkit end
2016-11-17 02:41:03 +01:00
AttributeInstance attributeinstance = this.getAttributeMap().a("Speed");
2018-07-15 02:00:00 +02:00
@@ -794,6 +803,18 @@
2016-02-29 22:32:46 +01:00
}
2018-07-15 02:00:00 +02:00
public void b(int i) {
2016-02-29 22:32:46 +01:00
+ // CraftBukkit start
+ float power;
+ if (i >= 90) {
+ power = 1.0F;
+ } else {
+ power = 0.4F + 0.4F * (float) i / 90.0F;
+ }
+ org.bukkit.event.entity.HorseJumpEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callHorseJumpEvent(this, power);
2016-02-29 22:32:46 +01:00
+ if (event.isCancelled()) {
+ return;
+ }
+ // CraftBukkit end
this.canSlide = true;
2018-07-15 02:00:00 +02:00
this.dH();
}