aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0153-Material-API-additions.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/api/0153-Material-API-additions.patch')
-rw-r--r--patches/api/0153-Material-API-additions.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/patches/api/0153-Material-API-additions.patch b/patches/api/0153-Material-API-additions.patch
new file mode 100644
index 0000000000..6705f33335
--- /dev/null
+++ b/patches/api/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 7ed67f356cf0ef8b3252256dcd4185f18573c989..d56d899ca7737b537ea55c13a384888a873f5da3 100644
+--- a/src/main/java/org/bukkit/Material.java
++++ b/src/main/java/org/bukkit/Material.java
+@@ -118,6 +118,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, Translatable {
+ //<editor-fold desc="Materials" defaultstate="collapsed">
+ AIR(9648, 0),
+@@ -4438,6 +4439,22 @@ public enum Material implements Keyed, Translatable {
+ }
+ }
+
++ // 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.
+ *