Files
minecraft-aiworld/camping-supplies-addon/camping_supplies_BP/recipes/hammock.json
SysAdmin 3a010091e5
All checks were successful
Deploy Addons / deploy (push) Successful in 15s
fix(camping): reshape hammock recipe to fit 3x3 crafting grid
Original 5x2 pattern (T   T / TWWWT) exceeded the vanilla crafting grid
and BDS rejected it with "Adding a recipe larger than 3x3". Replaced
with a 3x3 layout: strings on the four corners as suspension points,
wool row across the middle as the cloth.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-24 01:36:18 +01:00

34 lines
545 B
JSON

{
"format_version": "1.21.0",
"minecraft:recipe_shaped": {
"description": {
"identifier": "silverlabs:hammock_recipe"
},
"tags": [
"crafting_table"
],
"unlock": [
{
"item": "minecraft:crafting_table"
}
],
"pattern": [
"T T",
"WWW",
"T T"
],
"key": {
"W": {
"item": "minecraft:white_wool"
},
"T": {
"item": "minecraft:string"
}
},
"result": {
"item": "silverlabs:hammock",
"count": 1
}
}
}