2019-03-20 01:28:15 +01:00
|
|
|
From 4e9c8caa8395d98ee682ff83f656c5128a5801d0 Mon Sep 17 00:00:00 2001
|
2017-01-22 00:06:28 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Sat, 21 Jan 2017 17:03:10 -0600
|
|
|
|
Subject: [PATCH] Expose WorldBorder#isInBounds(Location) check
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/WorldBorder.java b/src/main/java/org/bukkit/WorldBorder.java
|
2019-03-20 01:28:15 +01:00
|
|
|
index 7e8f5649..afb7b136 100644
|
2017-01-22 00:06:28 +01:00
|
|
|
--- a/src/main/java/org/bukkit/WorldBorder.java
|
|
|
|
+++ b/src/main/java/org/bukkit/WorldBorder.java
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -117,4 +117,18 @@ public interface WorldBorder {
|
2017-01-26 05:27:42 +01:00
|
|
|
* @return if this location is inside the border or not
|
2017-01-22 00:06:28 +01:00
|
|
|
*/
|
2019-03-20 01:28:15 +01:00
|
|
|
public boolean isInside(@NotNull Location location);
|
2017-01-22 00:06:28 +01:00
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Checks if the location is within the boundaries of this border.
|
|
|
|
+ *
|
|
|
|
+ * @param location specific location to check
|
|
|
|
+ * @return true if the location is within the bounds of this border, false otherwise.
|
2017-01-26 05:27:42 +01:00
|
|
|
+ * @deprecated use {@link #isInside(Location)} for an upstream compatible replacement
|
2017-01-22 00:06:28 +01:00
|
|
|
+ */
|
2017-01-26 05:27:42 +01:00
|
|
|
+ @Deprecated
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default boolean isInBounds(@NotNull Location location) {
|
2017-01-26 05:27:42 +01:00
|
|
|
+ return this.isInside(location);
|
|
|
|
+ }
|
2017-01-22 00:06:28 +01:00
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
--
|
2019-03-20 01:28:15 +01:00
|
|
|
2.21.0
|
2017-01-22 00:06:28 +01:00
|
|
|
|