mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
57 lines
2.5 KiB
Diff
57 lines
2.5 KiB
Diff
--- a/net/minecraft/server/EntityLeash.java
|
|
+++ b/net/minecraft/server/EntityLeash.java
|
|
@@ -1,5 +1,7 @@
|
|
package net.minecraft.server;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
+
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
import javax.annotation.Nullable;
|
|
@@ -71,22 +73,42 @@
|
|
while (iterator.hasNext()) {
|
|
entityinsentient = (EntityInsentient) iterator.next();
|
|
if (entityinsentient.isLeashed() && entityinsentient.getLeashHolder() == entityhuman) {
|
|
+ // CraftBukkit start
|
|
+ if (CraftEventFactory.callPlayerLeashEntityEvent(entityinsentient, this, entityhuman).isCancelled()) {
|
|
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutAttachEntity(entityinsentient, entityinsentient.getLeashHolder()));
|
|
+ continue;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
entityinsentient.setLeashHolder(this, true);
|
|
flag = true;
|
|
}
|
|
}
|
|
|
|
if (!flag) {
|
|
- this.die();
|
|
- if (entityhuman.abilities.canInstantlyBuild) {
|
|
+ // CraftBukkit start - Move below
|
|
+ // this.die();
|
|
+ boolean die = true;
|
|
+ // CraftBukkit end
|
|
+ if (true || entityhuman.abilities.canInstantlyBuild) { // CraftBukkit - Process for non-creative as well
|
|
iterator = list.iterator();
|
|
|
|
while (iterator.hasNext()) {
|
|
entityinsentient = (EntityInsentient) iterator.next();
|
|
if (entityinsentient.isLeashed() && entityinsentient.getLeashHolder() == this) {
|
|
- entityinsentient.unleash(true, false);
|
|
+ // CraftBukkit start
|
|
+ if (CraftEventFactory.callPlayerUnleashEntityEvent(entityinsentient, entityhuman).isCancelled()) {
|
|
+ die = false;
|
|
+ continue;
|
|
+ }
|
|
+ entityinsentient.unleash(true, !entityhuman.abilities.canInstantlyBuild); // false -> survival mode boolean
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
+ // CraftBukkit start
|
|
+ if (die) {
|
|
+ this.die();
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
|