Add a method to reset Lodestone compasses back to normal ones (#11308)
This commit is contained in:
@ -40,6 +40,46 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
ItemType.Typed<ItemMeta> TOTEM_OF_UNDYING = getItemType("totem_of_undying");
|
||||
ItemType.Typed<ItemMeta> SHULKER_SHELL = getItemType("shulker_shell");
|
||||
ItemType.Typed<ItemMeta> IRON_NUGGET = getItemType("iron_nugget");
|
||||
diff --git a/src/main/java/org/bukkit/inventory/meta/CompassMeta.java b/src/main/java/org/bukkit/inventory/meta/CompassMeta.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/inventory/meta/CompassMeta.java
|
||||
+++ b/src/main/java/org/bukkit/inventory/meta/CompassMeta.java
|
||||
@@ -0,0 +0,0 @@ public interface CompassMeta extends ItemMeta {
|
||||
/**
|
||||
* Sets the location this lodestone compass will point to.
|
||||
*
|
||||
- * @param lodestone new location or null to clear
|
||||
+ * @param lodestone new location or null to clear the targeted location
|
||||
+ * @see #clearLodestone() to reset the compass to a normal compass
|
||||
*/
|
||||
void setLodestone(@Nullable Location lodestone);
|
||||
|
||||
@@ -0,0 +0,0 @@ public interface CompassMeta extends ItemMeta {
|
||||
* location.
|
||||
*
|
||||
* @param tracked new tracked status
|
||||
+ * @see #clearLodestone() to reset the compass to a normal compass
|
||||
*/
|
||||
void setLodestoneTracked(boolean tracked);
|
||||
|
||||
+ // Paper start - Add more lodestone compass methods
|
||||
+ /**
|
||||
+ * Checks if this compass is considered a lodestone compass.
|
||||
+ * @see #hasLodestone() to check if a position is being tracked
|
||||
+ * @see #isLodestoneTracked() to check if it verifies the position is a lodestone
|
||||
+ */
|
||||
+ boolean isLodestoneCompass();
|
||||
+
|
||||
+ /**
|
||||
+ * Reset this compass to a normal compass, removing any tracked
|
||||
+ * location.
|
||||
+ */
|
||||
+ void clearLodestone();
|
||||
+ // Paper end - Add more lodestone compass methods
|
||||
+
|
||||
@Override
|
||||
CompassMeta clone();
|
||||
}
|
||||
diff --git a/src/main/java/org/bukkit/inventory/meta/Damageable.java b/src/main/java/org/bukkit/inventory/meta/Damageable.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/inventory/meta/Damageable.java
|
||||
|
||||
Reference in New Issue
Block a user