mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 17:01:56 +01:00
Deprecate Material#isInteractable (#9216)
This commit is contained in:
parent
e6ad4fadf4
commit
caf899f62b
1 changed files with 12 additions and 0 deletions
|
@ -324,6 +324,18 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||||
public Class<? extends MaterialData> getData() {
|
public Class<? extends MaterialData> getData() {
|
||||||
Preconditions.checkArgument(legacy, "Cannot get data class of Modern Material");
|
Preconditions.checkArgument(legacy, "Cannot get data class of Modern Material");
|
||||||
return ctor.getDeclaringClass();
|
return ctor.getDeclaringClass();
|
||||||
|
@@ -0,0 +0,0 @@ public enum Material implements Keyed, Translatable {
|
||||||
|
* material.
|
||||||
|
*
|
||||||
|
* @return true if this material can be interacted with.
|
||||||
|
+ * @deprecated This method is not comprehensive and does not accurately reflect what block types are
|
||||||
|
+ * interactable. Many "interactions" are defined on the item not block, and many are conditional on some other world state
|
||||||
|
+ * checks being true.
|
||||||
|
*/
|
||||||
|
+ @Deprecated // Paper
|
||||||
|
public boolean isInteractable() {
|
||||||
|
switch (this) {
|
||||||
|
// <editor-fold defaultstate="collapsed" desc="isInteractable">
|
||||||
diff --git a/src/main/java/org/bukkit/NamespacedKey.java b/src/main/java/org/bukkit/NamespacedKey.java
|
diff --git a/src/main/java/org/bukkit/NamespacedKey.java b/src/main/java/org/bukkit/NamespacedKey.java
|
||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
--- a/src/main/java/org/bukkit/NamespacedKey.java
|
--- a/src/main/java/org/bukkit/NamespacedKey.java
|
||||||
|
|
Loading…
Reference in a new issue