New minor version with fix for caching on dynamic models #12

Merged
Adrien1106 merged 10 commits from dev into master 2024-04-15 20:58:48 +02:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit a430a8e62b - Show all commits

View File

@ -43,7 +43,7 @@ public class ReFramedBlueprintItem extends Item implements RecipeSetter {
@Override
public void setRecipe(RecipeExporter exporter) {
ShapedRecipeJsonBuilder
.create(RecipeCategory.BUILDING_BLOCKS, this, 3)
.create(RecipeCategory.TOOLS, this, 3)
.pattern("PI")
.pattern("PP")
.input('P', Items.PAPER)

View File

@ -56,7 +56,7 @@ public class ReFramedHammerItem extends Item implements RecipeSetter {
@Override
public void setRecipe(RecipeExporter exporter) {
ShapedRecipeJsonBuilder
.create(RecipeCategory.BUILDING_BLOCKS, this)
.create(RecipeCategory.TOOLS, this)
.pattern(" CI")
.pattern(" ~C")
.pattern("~ ")

View File

@ -65,7 +65,7 @@ public class ReFramedScrewdriverItem extends Item implements RecipeSetter {
@Override
public void setRecipe(RecipeExporter exporter) {
ShapedRecipeJsonBuilder
.create(RecipeCategory.BUILDING_BLOCKS, this)
.create(RecipeCategory.TOOLS, this)
.pattern(" I")
.pattern(" I ")
.pattern("C ")