Skip to content

Commit 3269606

Browse files
committed
fix: fix crafting table recipes of stairs
1 parent 48cfdbf commit 3269606

File tree

10 files changed

+34
-26
lines changed

10 files changed

+34
-26
lines changed

docs/.data/biomancy/recipe/blasting/glass_pane.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cookingtime": 100,
55
"experience": 0.01,
66
"ingredient": {
7-
"id": "biomancy:stone_powder"
7+
"item": "biomancy:stone_powder"
88
},
99
"result": {
1010
"id": "minecraft:glass_pane"

src/generated/resources/data/biomancy/recipes/crafting/fibrous_flesh_stairs.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"type": "minecraft:crafting_shaped",
33
"category": "building",
44
"key": {
5-
"S": {
5+
"#": {
66
"item": "biomancy:fibrous_flesh"
77
}
88
},
99
"pattern": [
10-
"SS",
11-
"SS"
10+
"# ",
11+
"## ",
12+
"###"
1213
],
1314
"result": {
1415
"count": 4,

src/generated/resources/data/biomancy/recipes/crafting/fibrous_primal_flesh_stairs.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"type": "minecraft:crafting_shaped",
33
"category": "building",
44
"key": {
5-
"S": {
5+
"#": {
66
"item": "biomancy:fibrous_primal_flesh"
77
}
88
},
99
"pattern": [
10-
"SS",
11-
"SS"
10+
"# ",
11+
"## ",
12+
"###"
1213
],
1314
"result": {
1415
"count": 4,

src/generated/resources/data/biomancy/recipes/crafting/flesh_stairs.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"type": "minecraft:crafting_shaped",
33
"category": "building",
44
"key": {
5-
"S": {
5+
"#": {
66
"item": "biomancy:flesh"
77
}
88
},
99
"pattern": [
10-
"SS",
11-
"SS"
10+
"# ",
11+
"## ",
12+
"###"
1213
],
1314
"result": {
1415
"count": 4,

src/generated/resources/data/biomancy/recipes/crafting/malignant_flesh_stairs.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"type": "minecraft:crafting_shaped",
33
"category": "building",
44
"key": {
5-
"S": {
5+
"#": {
66
"item": "biomancy:malignant_flesh"
77
}
88
},
99
"pattern": [
10-
"SS",
11-
"SS"
10+
"# ",
11+
"## ",
12+
"###"
1213
],
1314
"result": {
1415
"count": 4,

src/generated/resources/data/biomancy/recipes/crafting/packed_flesh_stairs.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"type": "minecraft:crafting_shaped",
33
"category": "building",
44
"key": {
5-
"S": {
5+
"#": {
66
"item": "biomancy:packed_flesh"
77
}
88
},
99
"pattern": [
10-
"SS",
11-
"SS"
10+
"# ",
11+
"## ",
12+
"###"
1213
],
1314
"result": {
1415
"count": 4,

src/generated/resources/data/biomancy/recipes/crafting/porous_primal_flesh_stairs.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"type": "minecraft:crafting_shaped",
33
"category": "building",
44
"key": {
5-
"S": {
5+
"#": {
66
"item": "biomancy:porous_primal_flesh"
77
}
88
},
99
"pattern": [
10-
"SS",
11-
"SS"
10+
"# ",
11+
"## ",
12+
"###"
1213
],
1314
"result": {
1415
"count": 4,

src/generated/resources/data/biomancy/recipes/crafting/primal_flesh_stairs.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"type": "minecraft:crafting_shaped",
33
"category": "building",
44
"key": {
5-
"S": {
5+
"#": {
66
"item": "biomancy:primal_flesh"
77
}
88
},
99
"pattern": [
10-
"SS",
11-
"SS"
10+
"# ",
11+
"## ",
12+
"###"
1213
],
1314
"result": {
1415
"count": 4,

src/generated/resources/data/biomancy/recipes/crafting/smooth_primal_flesh_stairs.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"type": "minecraft:crafting_shaped",
33
"category": "building",
44
"key": {
5-
"S": {
5+
"#": {
66
"item": "biomancy:smooth_primal_flesh"
77
}
88
},
99
"pattern": [
10-
"SS",
11-
"SS"
10+
"# ",
11+
"## ",
12+
"###"
1213
],
1314
"result": {
1415
"count": 4,

src/main/java/com/github/elenterius/biomancy/datagen/recipes/builder/WorkbenchRecipeBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public static ShapedBuilder polished(RecipeCategory category, ItemLike result, I
6161
}
6262

6363
public static ShapedBuilder stairs(RecipeCategory category, ItemLike result, ItemLike ingredient) {
64-
return polished(category, result, Ingredient.of(ingredient)).unlockedBy(ingredient);
64+
return stairs(category, result, Ingredient.of(ingredient)).unlockedBy(ingredient);
6565
}
6666

6767
public static ShapedBuilder stairs(RecipeCategory category, ItemLike result, Ingredient ingredient) {

0 commit comments

Comments
 (0)