Fix replace error

This commit is contained in:
DerFrZocker 2023-08-19 18:21:51 +02:00
parent ca5ea5d24a
commit 64880300e3
No known key found for this signature in database
GPG key ID: 713F71FFFE1DDF91

View file

@ -792,11 +792,11 @@ public interface Tag<T extends Keyed> extends Keyed {
/**
* Vanilla item tag representing all stone tool ItemTypes.
*/
Tag<ItemType> ITEMS_STONE_TOOL_ItemTypeS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("stone_tool_materials"), ItemType.class);
Tag<ItemType> ITEMS_STONE_TOOL_MATERIALS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("stone_tool_materials"), ItemType.class);
/**
* Vanilla item tag representing all furnace ItemTypes.
*/
Tag<ItemType> ITEMS_FURNACE_ItemTypeS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("furnace_materials"), ItemType.class);
Tag<ItemType> ITEMS_FURNACE_MATERIALS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("furnace_materials"), ItemType.class);
/**
* Vanilla item tag representing all compasses.
*/
@ -821,7 +821,7 @@ public interface Tag<T extends Keyed> extends Keyed {
/**
* Vanilla item tag representing all ItemTypes which can be used for trimming armor.
*/
Tag<ItemType> ITEMS_TRIM_ItemTypeS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("trim_materials"), ItemType.class);
Tag<ItemType> ITEMS_TRIM_MATERIALS = Bukkit.getTag(REGISTRY_ITEMS, NamespacedKey.minecraft("trim_materials"), ItemType.class);
/**
* Vanilla item tag representing all trimming templates.
*/