Skip to content

Commit

Permalink
fix: add missing wood types to woodcutting and moreBarkCrafting
Browse files Browse the repository at this point in the history
  • Loading branch information
RubixDev committed Feb 3, 2024
1 parent 3c3edb4 commit b42acd8
Show file tree
Hide file tree
Showing 8 changed files with 84 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Mod Properties
mod_id=rug
mod_name=Rug
mod_version=1.5.2
mod_version=1.5.3
maven_group=de.rubixdev.rug
archives_base_name=rug

Expand Down
10 changes: 8 additions & 2 deletions src/main/java/de/rubixdev/rug/RugSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -229,21 +229,24 @@ public String description() {
recipes = {
"acacia_wood.json",
"birch_wood.json",
"cherry_wood.json",
"crimson_hyphae.json",
"dark_oak_wood.json",
"jungle_wood.json",
"mangrove_wood.json",
"oak_wood.json",
"spruce_wood.json",
"warped_hyphae.json",
"stripped_acacia_wood.json",
"stripped_birch_wood.json",
"stripped_cherry_wood.json",
"stripped_crimson_hyphae.json",
"stripped_dark_oak_wood.json",
"stripped_jungle_wood.json",
"stripped_mangrove_wood.json",
"stripped_oak_wood.json",
"stripped_spruce_wood.json",
"stripped_warped_hyphae.json",
"warped_hyphae.json"
"stripped_warped_hyphae.json"
},
recipeNamespace = "minecraft")
@Rule(categories = {CRAFTING, SURVIVAL, RUG})
Expand Down Expand Up @@ -533,6 +536,9 @@ public String description() {
"woodcutting_birch_fence.json",
"woodcutting_birch_slab.json",
"woodcutting_birch_stairs.json",
"woodcutting_cherry_fence.json",
"woodcutting_cherry_slab.json",
"woodcutting_cherry_stairs.json",
"woodcutting_crimson_fence.json",
"woodcutting_crimson_slab.json",
"woodcutting_crimson_stairs.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "crafting_shaped",
"group": "bark",
"pattern": [
"##",
"##"
],
"key": {
"#": {
"item": "minecraft:cherry_log"
}
},
"result": {
"item": "minecraft:cherry_wood",
"count": 4
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "crafting_shaped",
"group": "bark",
"pattern": [
"##",
"##"
],
"key": {
"#": {
"item": "minecraft:stripped_cherry_log"
}
},
"result": {
"item": "minecraft:stripped_cherry_wood",
"count": 4
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "crafting_shaped",
"group": "bark",
"pattern": [
"##",
"##"
],
"key": {
"#": {
"item": "minecraft:stripped_mangrove_log"
}
},
"result": {
"item": "minecraft:stripped_mangrove_wood",
"count": 4
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "minecraft:cherry_planks"
},
"result": "minecraft:cherry_fence",
"count": 1
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "minecraft:cherry_planks"
},
"result": "minecraft:cherry_slab",
"count": 2
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "minecraft:cherry_planks"
},
"result": "minecraft:cherry_stairs",
"count": 1
}

0 comments on commit b42acd8

Please sign in to comment.