From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Aikar 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 0a03dc437973888ba57ba00fec47193fee38b5a9..605af1a9fc48602643aec57dd14e8c4ab657a0bc 100644 --- a/src/main/java/org/bukkit/entity/Enderman.java +++ b/src/main/java/org/bukkit/entity/Enderman.java @@ -11,6 +11,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. *