SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2024-02-17 13:39:14 +11:00
parent 5c89ccf428
commit 57c19c41c5

View file

@ -755,6 +755,10 @@ public interface Tag<T extends Keyed> extends Keyed {
* Vanilla item tag representing all banner items.
*/
Tag<Material> ITEMS_BANNERS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("banners"), Material.class);
/**
* Vanilla item tag representing all non flammable wood items.
*/
Tag<Material> ITEMS_NON_FLAMMABLE_WOOD = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("non_flammable_wood"), Material.class);
/**
* Vanilla item tag representing all boat items.
*/