aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0098-Enderman.teleportRandomly.patch
blob: 5fedcbb7461c77dee34fa6c19f929e2a4823a627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
index cc4648528c08980e6191e2fbdd7ba366617491b5..3afe2787de576f7190d87c796bea0ab34dc30248 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.
      *