Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
17b58d00d8
This was a useless exception wrapper that ends up making stack traces harder to read as well as the JVM cutting off the important parts Nothing catches this exception, so its safe to just get rid of it and let the REAL exception bubble down
33 Zeilen
1021 B
Diff
33 Zeilen
1021 B
Diff
From 1020cf1bb231062418dfebbf41aff92e762a470e 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 edb49a20..1ea289b5 100644
|
|
--- a/src/main/java/org/bukkit/entity/Enderman.java
|
|
+++ b/src/main/java/org/bukkit/entity/Enderman.java
|
|
@@ -8,6 +8,17 @@ import org.bukkit.material.MaterialData;
|
|
*/
|
|
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.20.1
|
|
|