2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 6 Oct 2018 21:14:29 -0400
|
|
|
|
Subject: [PATCH] Material API additions
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Material.java b/src/main/java/org/bukkit/Material.java
|
2024-04-28 03:00:01 +02:00
|
|
|
index 2750e143a3ac20797e16a15b687952157197d562..c2808db693647bdf3b9617cb6c665e8499874485 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Material.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Material.java
|
2024-04-28 03:00:01 +02:00
|
|
|
@@ -125,6 +125,7 @@ import org.jetbrains.annotations.Nullable;
|
2021-06-11 14:02:28 +02:00
|
|
|
/**
|
|
|
|
* An enum of all material IDs accepted by the official server and client
|
|
|
|
*/
|
|
|
|
+@SuppressWarnings({"DeprecatedIsStillUsed", "deprecation"}) // Paper
|
2023-02-15 23:10:14 +01:00
|
|
|
public enum Material implements Keyed, Translatable {
|
2021-06-11 14:02:28 +02:00
|
|
|
//<editor-fold desc="Materials" defaultstate="collapsed">
|
|
|
|
AIR(9648, 0),
|
2024-04-28 03:00:01 +02:00
|
|
|
@@ -4725,6 +4726,22 @@ public enum Material implements Keyed, Translatable {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @return If the type is either AIR, CAVE_AIR or VOID_AIR
|
|
|
|
+ */
|
|
|
|
+ public boolean isEmpty() {
|
|
|
|
+ switch (this) {
|
|
|
|
+ case AIR:
|
|
|
|
+ case CAVE_AIR:
|
|
|
|
+ case VOID_AIR:
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Do not use for any reason.
|
|
|
|
*
|