Commits
md_5 authored ffaba05158e
748 748 | */ |
749 749 | Tag<Material> PIGLIN_FOOD = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("piglin_food"), Material.class); |
750 750 | /** |
751 751 | * Vanilla item tag representing all fox food. |
752 752 | */ |
753 753 | Tag<Material> FOX_FOOD = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("fox_food"), Material.class); |
754 754 | /** |
755 755 | * Vanilla item tag representing all banner items. |
756 756 | */ |
757 757 | Tag<Material> ITEMS_BANNERS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("banners"), Material.class); |
758 + | /** |
759 + | * Vanilla item tag representing all non flammable wood items. |
760 + | */ |
761 + | Tag<Material> ITEMS_NON_FLAMMABLE_WOOD = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("non_flammable_wood"), Material.class); |
758 762 | /** |
759 763 | * Vanilla item tag representing all boat items. |
760 764 | */ |
761 765 | Tag<Material> ITEMS_BOATS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("boats"), Material.class); |
762 766 | /** |
763 767 | * Vanilla item tag representing all chest boat items. |
764 768 | */ |
765 769 | Tag<Material> ITEMS_CHEST_BOATS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("chest_boats"), Material.class); |
766 770 | /** |
767 771 | * Vanilla item tag representing all fish items. |