We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8610164 commit 27f2874Copy full SHA for 27f2874
gm4_disassemblers/generate_disassembly.py
@@ -55,6 +55,7 @@
55
"shears": 239,
56
"fishing_rod": 65,
57
"flint_and_steel": 65,
58
+ "shield": 336,
59
}
60
61
@@ -94,7 +95,9 @@ def beet_default(ctx: Context):
94
95
})
96
continue
97
- if ingredient.startswith("#"):
98
+ if "wooden_tool_materials" in ingredient:
99
+ entry: Any = {"type": "minecraft:item", "name": "minecraft:stick"}
100
+ elif ingredient.startswith("#"):
101
entry: Any = {"type": "minecraft:tag", "name": ingredient[1:], "expand": True}
102
else:
103
entry: Any = {"type": "minecraft:item", "name": ingredient}
0 commit comments