geforkt von Mirrors/Paper
19de9af63c
Functional GUI fix added by billygalbreath
33 Zeilen
1.0 KiB
Diff
33 Zeilen
1.0 KiB
Diff
From 22b8e1bb9689bb3b947d2129d699757c7bac34dd 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
|
|
index bb325d9c..821c690f 100644
|
|
--- a/src/main/java/org/bukkit/entity/Enderman.java
|
|
+++ b/src/main/java/org/bukkit/entity/Enderman.java
|
|
@@ -10,6 +10,17 @@ import org.jetbrains.annotations.Nullable;
|
|
*/
|
|
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.
|
|
*
|
|
--
|
|
2.25.0.windows.1
|
|
|