diff options
Diffstat (limited to 'patches/api/0477-Introduce-registry-entry-and-builders.patch')
-rw-r--r-- | patches/api/0477-Introduce-registry-entry-and-builders.patch | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/patches/api/0477-Introduce-registry-entry-and-builders.patch b/patches/api/0477-Introduce-registry-entry-and-builders.patch index 893f066224..e97c9cef4e 100644 --- a/patches/api/0477-Introduce-registry-entry-and-builders.patch +++ b/patches/api/0477-Introduce-registry-entry-and-builders.patch @@ -23,7 +23,7 @@ index 76daccf4ea502e1747a6f9176dc16fd20c561286..2945dde566682f977e84fde5d473a6c6 diff --git a/src/main/java/io/papermc/paper/registry/data/EnchantmentRegistryEntry.java b/src/main/java/io/papermc/paper/registry/data/EnchantmentRegistryEntry.java new file mode 100644 -index 0000000000000000000000000000000000000000..4e010d213c165abbdbf784431bf0b78179d079be +index 0000000000000000000000000000000000000000..6c7d8b98103909428bb4dcf14825fe188db6d12f --- /dev/null +++ b/src/main/java/io/papermc/paper/registry/data/EnchantmentRegistryEntry.java @@ -0,0 +1,332 @@ @@ -74,11 +74,11 @@ index 0000000000000000000000000000000000000000..4e010d213c165abbdbf784431bf0b781 + * Provides the registry key set referencing the item types this enchantment can be applied to when + * enchanting in an enchantment table. + * <p> -+ * If this value is null, {@link #supportedItems()} will be sourced instead in the context of an enchantment table. ++ * If this value is {@code null}, {@link #supportedItems()} will be sourced instead in the context of an enchantment table. + * Additionally, the tag {@link io.papermc.paper.registry.keys.tags.EnchantmentTagKeys#IN_ENCHANTING_TABLE} defines + * which enchantments can even show up in an enchantment table. + * -+ * @return the tag key. ++ * @return the registry key set. + */ + @Nullable RegistryKeySet<ItemType> primaryItems(); + @@ -127,7 +127,7 @@ index 0000000000000000000000000000000000000000..4e010d213c165abbdbf784431bf0b781 + * information. + * </p> + * -+ * @return The anvil cost of this enchantment ++ * @return the anvil cost of this enchantment + */ + @Range(from = 0, to = Integer.MAX_VALUE) int anvilCost(); + @@ -189,7 +189,7 @@ index 0000000000000000000000000000000000000000..4e010d213c165abbdbf784431bf0b781 + * {@link io.papermc.paper.registry.keys.tags.ItemTypeTagKeys#ENCHANTABLE_ARMOR} and + * {@link io.papermc.paper.registry.keys.tags.ItemTypeTagKeys#ENCHANTABLE_SWORD}. + * -+ * @param supportedItems the tag key representing the supported items. ++ * @param supportedItems the registry key set representing the supported items. + * @return this builder. + * @see RegistrySet#keySet(RegistryKey, TypedKey[]) + * @see io.papermc.paper.registry.event.RegistryFreezeEvent#getOrCreateTag(TagKey) @@ -210,7 +210,7 @@ index 0000000000000000000000000000000000000000..4e010d213c165abbdbf784431bf0b781 + * Additionally, the tag {@link io.papermc.paper.registry.keys.tags.EnchantmentTagKeys#IN_ENCHANTING_TABLE} defines + * which enchantments can even show up in an enchantment table. + * -+ * @param primaryItems the tag key representing the primary items. ++ * @param primaryItems the registry key set representing the primary items. + * @return this builder. + * @see RegistrySet#keySet(RegistryKey, TypedKey[]) + * @see io.papermc.paper.registry.event.RegistryFreezeEvent#getOrCreateTag(TagKey) @@ -270,7 +270,7 @@ index 0000000000000000000000000000000000000000..4e010d213c165abbdbf784431bf0b781 + * See <a href="https://minecraft.wiki/w/Anvil_mechanics">https://minecraft.wiki/w/Anvil_mechanics</a> for more information. + * </p> + * -+ * @param anvilCost The anvil cost of this enchantment ++ * @param anvilCost the anvil cost of this enchantment + * @return this builder. + * @see Enchantment#getAnvilCost() + */ |