Skip to content

Commit

Permalink
Added chain recipe back
Browse files Browse the repository at this point in the history
  • Loading branch information
lilypuree committed Jan 29, 2024
1 parent c7e2847 commit f592eb0
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Minecraft 1.20.1 Changelog

### 4.1.2
- Added chain recipe back

### 4.1.1
- Cherry blocks properly tagged
- Bonfires causes soul fire to entities when soul fire'd mod is installed
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_ingot": {
"conditions": {
"items": [
{
"items": [
"minecraft:iron_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "decorative_blocks:chain"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_ingot",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"decorative_blocks:chain"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"##",
"ii",
"##"
],
"key": {
"#": {
"item": "minecraft:iron_nugget"
},
"i": {
"item": "minecraft:iron_ingot"
}
},
"result": {
"item": "decorative_blocks:chain",
"count": 4
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

# Project
version=4.1.1
version=4.1.2
group=lilypuree

# Mod options
Expand Down

0 comments on commit f592eb0

Please sign in to comment.