Skip to content

Commit

Permalink
feat: simpler hanging signs recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
2mal3 committed Feb 7, 2024
1 parent dc4c431 commit d4f448d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/data/2re/modules/minecraft.bolt
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,14 @@ for name, recipe in vanilla_recipes.items():
modified_recipe["key"]["#"]["item"] = "minecraft:gold_ingot"

recipe name modified_recipe

# Hanging Signs with Planks
elif name.endswith("_hanging_sign"):
modified_recipe["result"]["count"] = 3

item_name = modified_recipe["key"]["#"]["item"]
item_name = item_name.replace("stripped_", "")
item_name = item_name.replace("log", "planks")
modified_recipe["key"]["#"]["item"] = item_name

recipe name modified_recipe

0 comments on commit d4f448d

Please sign in to comment.