aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-API-Patches-Unmapped/0153-Material-API-additions.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-API-Patches-Unmapped/0153-Material-API-additions.patch')
-rw-r--r--Spigot-API-Patches-Unmapped/0153-Material-API-additions.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/Spigot-API-Patches-Unmapped/0153-Material-API-additions.patch b/Spigot-API-Patches-Unmapped/0153-Material-API-additions.patch
new file mode 100644
index 0000000000..d19f497e71
--- /dev/null
+++ b/Spigot-API-Patches-Unmapped/0153-Material-API-additions.patch
@@ -0,0 +1,41 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Aikar <[email protected]>
+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
+index e4d0dc26fb2f2c4435e11b3460d8c93d6a6fc47f..2b53e68e96ea346a6f2b5cadcf9f81b2c231c408 100644
+--- a/src/main/java/org/bukkit/Material.java
++++ b/src/main/java/org/bukkit/Material.java
+@@ -87,6 +87,7 @@ import org.jetbrains.annotations.Nullable;
+ /**
+ * An enum of all material IDs accepted by the official server and client
+ */
++@SuppressWarnings({"DeprecatedIsStillUsed", "deprecation"}) // Paper
+ public enum Material implements Keyed {
+ //<editor-fold desc="Materials" defaultstate="collapsed">
+ AIR(9648, 0),
+@@ -3563,6 +3564,22 @@ public enum Material implements Keyed {
+ }
+ }
+
++ // 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.
+ *