diff --git a/Spigot-API-Patches/Add-Material-Tags.patch b/Spigot-API-Patches/Add-Material-Tags.patch index 2562158cb3..d9ba39d5c4 100644 --- a/Spigot-API-Patches/Add-Material-Tags.patch +++ b/Spigot-API-Patches/Add-Material-Tags.patch @@ -306,6 +306,13 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + .add(Material.COOKED_COD, Material.COOKED_SALMON); + + /** ++ * Covers all variants of doors. ++ */ ++ public static final MaterialSetTag DOORS = new MaterialSetTag(keyFor("doors")) ++ .endsWith("_DOOR") ++ .ensureSize("DOORS", 9); ++ ++ /** + * Covers all dyes. + */ + public static final MaterialSetTag DYES = new MaterialSetTag(keyFor("dyes")) @@ -542,6 +549,14 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + .ensureSize("TRAPDOORS", 9); + + /** ++ * Covers all wood variants of doors. ++ */ ++ public static final MaterialSetTag WOODEN_DOORS = new MaterialSetTag(keyFor("wooden_doors")) ++ .endsWith("_DOOR") ++ .not(Material.IRON_DOOR) ++ .ensureSize("WOODEN_DOORS", 8); ++ ++ /** + * Covers all wood variants of fences. + */ + public static final MaterialSetTag WOODEN_FENCES = new MaterialSetTag(keyFor("wooden_fences"))