2017-02-19 23:55:24 +01:00
|
|
|
--- a/net/minecraft/server/EntityShulker.java
|
|
|
|
+++ b/net/minecraft/server/EntityShulker.java
|
2018-12-25 22:00:00 +01:00
|
|
|
@@ -5,6 +5,10 @@
|
|
|
|
import java.util.Optional;
|
2017-02-19 23:55:24 +01:00
|
|
|
import java.util.UUID;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.Location;
|
|
|
|
+import org.bukkit.event.entity.EntityTeleportEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
|
|
|
|
public class EntityShulker extends EntityGolem implements IMonster {
|
|
|
|
|
2018-12-25 22:00:00 +01:00
|
|
|
@@ -320,8 +324,17 @@
|
2017-02-19 23:55:24 +01:00
|
|
|
EnumDirection enumdirection = aenumdirection[k];
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
if (this.world.q(blockposition1.shift(enumdirection))) {
|
2017-02-19 23:55:24 +01:00
|
|
|
- this.datawatcher.set(EntityShulker.a, enumdirection);
|
|
|
|
- flag = true;
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ EntityTeleportEvent teleport = new EntityTeleportEvent(this.getBukkitEntity(), this.getBukkitEntity().getLocation(), new Location(this.world.getWorld(), blockposition1.getX(), blockposition1.getY(), blockposition1.getZ()));
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(teleport);
|
|
|
|
+ if (!teleport.isCancelled()) {
|
|
|
|
+ Location to = teleport.getTo();
|
|
|
|
+ blockposition1 = new BlockPosition(to.getX(), to.getY(), to.getZ());
|
|
|
|
+
|
|
|
|
+ this.datawatcher.set(EntityShulker.a, enumdirection);
|
|
|
|
+ flag = true;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-12-25 22:00:00 +01:00
|
|
|
@@ -366,6 +379,7 @@
|
2018-09-26 09:19:16 +02:00
|
|
|
this.locX = (double) blockposition.getX() + 0.5D;
|
|
|
|
this.locY = (double) blockposition.getY();
|
|
|
|
this.locZ = (double) blockposition.getZ() + 0.5D;
|
|
|
|
+ if (valid) world.entityJoinedWorld(this, false); // CraftBukkit
|
|
|
|
this.lastX = this.locX;
|
|
|
|
this.lastY = this.locY;
|
|
|
|
this.lastZ = this.locZ;
|