2019-03-21 05:20:56 +01:00
|
|
|
From f8da455661efa320cd90dd6a41195b8a0c29bc3e Mon Sep 17 00:00:00 2001
|
2018-07-15 03:53:17 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 28 Mar 2016 21:22:26 -0400
|
|
|
|
Subject: [PATCH] EntityPathfindEvent
|
|
|
|
|
|
|
|
Fires when an Entity decides to start moving to a location.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/NavigationAbstract.java b/src/main/java/net/minecraft/server/NavigationAbstract.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 60b5068e3..604049b08 100644
|
2018-07-15 03:53:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/NavigationAbstract.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/NavigationAbstract.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -4,7 +4,7 @@ import javax.annotation.Nullable;
|
2018-07-15 03:53:17 +02:00
|
|
|
|
|
|
|
public abstract class NavigationAbstract {
|
2019-01-01 04:15:55 +01:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
- protected EntityInsentient a;
|
|
|
|
+ protected EntityInsentient a; public Entity getEntity() { return a; } // Paper - OBFHELPER
|
|
|
|
protected World b;
|
|
|
|
@Nullable
|
|
|
|
protected PathEntity c;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -78,6 +78,7 @@ public abstract class NavigationAbstract {
|
2018-07-15 03:53:17 +02:00
|
|
|
} else if (this.c != null && !this.c.b() && blockposition.equals(this.q)) {
|
|
|
|
return this.c;
|
|
|
|
} else {
|
|
|
|
+ if (!new com.destroystokyo.paper.event.entity.EntityPathfindEvent(getEntity().getBukkitEntity(), MCUtil.toLocation(getEntity().world, blockposition), null).callEvent()) { return null; } // Paper
|
|
|
|
this.q = blockposition;
|
2019-01-01 04:15:55 +01:00
|
|
|
float f = this.j();
|
|
|
|
|
|
|
|
@@ -102,6 +103,7 @@ public abstract class NavigationAbstract {
|
2018-07-15 03:53:17 +02:00
|
|
|
if (this.c != null && !this.c.b() && blockposition.equals(this.q)) {
|
|
|
|
return this.c;
|
|
|
|
} else {
|
|
|
|
+ if (!new com.destroystokyo.paper.event.entity.EntityPathfindEvent(getEntity().getBukkitEntity(), MCUtil.toLocation(entity.world, blockposition), entity.getBukkitEntity()).callEvent()) { return null; } // Paper
|
|
|
|
this.q = blockposition;
|
2019-01-01 04:15:55 +01:00
|
|
|
float f = this.j();
|
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
--
|
2019-03-21 05:20:56 +01:00
|
|
|
2.21.0
|
2018-07-15 03:53:17 +02:00
|
|
|
|