Skip to content

Commit

Permalink
🐛 Add missing RecipesUsed field to furnaces
Browse files Browse the repository at this point in the history
  • Loading branch information
misode committed Nov 25, 2024
1 parent 214452d commit 8f1bba7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions java/server/world/block/furnace.mcdoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ dispatch minecraft:block_entity[furnace, blast_furnace, smoker] to struct Furnac
/// Ticks the fuel has been burning for.
lit_total_time?: short,
},
/// Recipes that have been used since the last time a result item was removed from the GUI. Used to calculate the experience to give to the player.
#[since="1.16"]
RecipesUsed?: struct RecipesUsed {
/// How many times this recipe has been used.
[#[id="recipe"] string]: int,
},
}

dispatch minecraft:block[furnace, blast_furnace, smoker] to minecraft:block_entity[furnace]

0 comments on commit 8f1bba7

Please sign in to comment.