2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
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
|
2023-06-16 12:28:31 +02:00
|
|
|
index 0a03dc437973888ba57ba00fec47193fee38b5a9..605af1a9fc48602643aec57dd14e8c4ab657a0bc 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Enderman.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Enderman.java
|
2023-06-16 12:28:31 +02:00
|
|
|
@@ -11,6 +11,17 @@ import org.jetbrains.annotations.Nullable;
|
2021-06-11 14:02:28 +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
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Gets the id and data of the block that the Enderman is carrying.
|
|
|
|
*
|