Skip to content

Commit 28513c6

Browse files
Merge pull request #50 from The4codeblocks/patch-1
normalize casing count in recipe to 1
2 parents b085a9c + bd29201 commit 28513c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/generated/resources/data/createcobblestone/recipe/mechanical_generator.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
"pattern": [
2525
"IEI",
2626
"WDL",
27-
"BBB"
27+
"IBI"
2828
],
2929
"result": {
3030
"count": 1,
3131
"id": "createcobblestone:mechanical_generator"
3232
}
33-
}
33+
}

src/main/java/net/createcobblestone/neoforge/data/provider/MechanicalGeneratorRecipeProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ protected void buildRecipes(@NotNull RecipeOutput out) {
2828
ShapedRecipeBuilder.shaped(RecipeCategory.REDSTONE, MECHANICAL_GENERATOR_BLOCK.get(),1)
2929
.pattern("IEI")
3030
.pattern("WDL")
31-
.pattern("BBB")
31+
.pattern("IBI")
3232
.define('I', BRASS_INGOT)
3333
.define('E', ELECTRON_TUBE)
3434
.define('B', BRASS_CASING)

0 commit comments

Comments
 (0)