Skip to content

Commit

Permalink
Fix crafting_transmute
Browse files Browse the repository at this point in the history
  • Loading branch information
misode committed Sep 18, 2024
1 parent c87fd9b commit ba29ff9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion java/1.21.2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mcschema/java-1.21.2",
"version": "0.0.9",
"version": "0.0.10",
"description": "Schemas for Java Edition 1.21.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions java/1.21.2/src/schemas/Recipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export function initRecipeSchemas(schemas: SchemaRegistry, collections: Collecti
},
'minecraft:crafting_transmute': {
group: Opt(StringNode()),
input: ListNode(Reference('recipe_ingredient')),
material: ListNode(Reference('recipe_ingredient')),
input: Reference('recipe_ingredient'),
material: Reference('recipe_ingredient'),
result: StringNode({ validator: 'resource', params: { pool: 'item' } })
},
'minecraft:smelting': {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ba29ff9

Please sign in to comment.