aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/common/recipe.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/common/recipe.rs')
-rw-r--r--azalea-protocol/src/common/recipe.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-protocol/src/common/recipe.rs b/azalea-protocol/src/common/recipe.rs
index 8ab2d5ba..709679f1 100644
--- a/azalea-protocol/src/common/recipe.rs
+++ b/azalea-protocol/src/common/recipe.rs
@@ -1,5 +1,5 @@
use azalea_buf::AzBuf;
-use azalea_core::resource_location::ResourceLocation;
+use azalea_core::identifier::Identifier;
use azalea_inventory::ItemStack;
use azalea_registry::HolderSet;
@@ -56,7 +56,7 @@ pub struct SmithingRecipeDisplay {
#[derive(Clone, Debug, PartialEq, AzBuf)]
pub struct Ingredient {
- pub allowed: HolderSet<azalea_registry::Item, ResourceLocation>,
+ pub allowed: HolderSet<azalea_registry::Item, Identifier>,
}
/// [`azalea_registry::SlotDisplay`]
@@ -66,7 +66,7 @@ pub enum SlotDisplayData {
AnyFuel,
Item(ItemStackDisplay),
ItemStack(ItemStackSlotDisplay),
- Tag(ResourceLocation),
+ Tag(Identifier),
SmithingTrim(Box<SmithingTrimDemoSlotDisplay>),
WithRemainder(Box<WithRemainderSlotDisplay>),
Composite(CompositeSlotDisplay),