Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Commit

Permalink
Fix #1279. Fix Colored cut sandstone crafting recipes
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph T. McQuigg <J.T.McQuigg12@gmail.com>
  • Loading branch information
JT122406 committed Nov 2, 2023
1 parent d2b20eb commit 7114bab
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 25 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* Make Palo Verde Logs able to be used as fuel. Fixes #1250
* Make Prairie Grass grow when bone mealing grass blocks in the Prairie Biomes. Closes #1044
* Made non-BYG saplings usable in growth patterns
* Fix Broken Cut Sandstone Recipes. Fixes #1279

# 3.0.0.2
* Fix broken NBT files. Fixes #1206 and #1207
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "byg:black_sandstone"
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "byg:black_sandstone"
}
},
"result": "byg:black_cut_sandstone",
"count": 1
"pattern": [
"##",
"##"
],
"result": {
"count": 4,
"item": "byg:black_cut_sandstone"
}
}
19 changes: 14 additions & 5 deletions Common/src/main/resources/data/byg/recipes/blue_cut_sandstone.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "byg:blue_sandstone"
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "byg:blue_sandstone"
}
},
"result": "byg:blue_cut_sandstone",
"count": 1
"pattern": [
"##",
"##"
],
"result": {
"count": 4,
"item": "byg:blue_cut_sandstone"
}
}
19 changes: 14 additions & 5 deletions Common/src/main/resources/data/byg/recipes/pink_cut_sandstone.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "byg:pink_sandstone"
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "byg:pink_sandstone"
}
},
"result": "byg:pink_cut_sandstone",
"count": 1
"pattern": [
"##",
"##"
],
"result": {
"count": 4,
"item": "byg:pink_cut_sandstone"
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "byg:purple_sandstone"
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "byg:purple_sandstone"
}
},
"result": "byg:purple_cut_sandstone",
"count": 1
"pattern": [
"##",
"##"
],
"result": {
"count": 4,
"item": "byg:purple_cut_sandstone"
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "byg:white_sandstone"
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "byg:white_sandstone"
}
},
"result": "byg:white_cut_sandstone",
"count": 1
"pattern": [
"##",
"##"
],
"result": {
"count": 4,
"item": "byg:white_cut_sandstone"
}
}

0 comments on commit 7114bab

Please sign in to comment.