2020-05-02 00:03:47 +02:00
|
|
|
From 773bba9d4c6528f8878b14ab85f3f4db73ece4ad Mon Sep 17 00:00:00 2001
|
2018-04-30 19:30:00 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 30 Apr 2018 13:29:15 -0400
|
|
|
|
Subject: [PATCH] Enderman.teleportRandomly()
|
|
|
|
|
|
|
|
Ability to trigger the vanilla "teleport randomly" mechanic of an enderman.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Enderman.java b/src/main/java/org/bukkit/entity/Enderman.java
|
2020-04-02 23:07:06 +02:00
|
|
|
index bb325d9c8..821c690f8 100644
|
2018-04-30 19:30:00 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Enderman.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Enderman.java
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -10,6 +10,17 @@ import org.jetbrains.annotations.Nullable;
|
2018-04-30 19:30:00 +02:00
|
|
|
*/
|
|
|
|
public interface Enderman extends Monster {
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Try to teleport the enderman to a random nearby location.
|
|
|
|
+ *
|
|
|
|
+ * May conditionally fail if the random location was not valid
|
|
|
|
+ * @return If the enderman teleported successfully or not
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+ public boolean teleportRandomly();
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
2018-07-15 03:53:17 +02:00
|
|
|
* Gets the id and data of the block that the Enderman is carrying.
|
2018-04-30 19:30:00 +02:00
|
|
|
*
|
|
|
|
--
|
2020-05-02 00:03:47 +02:00
|
|
|
2.26.2
|
2018-04-30 19:30:00 +02:00
|
|
|
|