mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 16:33:48 +01:00
added groups to crafting
fixed wield image
This commit is contained in:
parent
f5e528ef69
commit
66a7437c09
@ -1,12 +1,12 @@
|
|||||||
vines.recipes['rope_block'] = {
|
vines.recipes['rope_block'] = {
|
||||||
{'', 'default:wood', ''},
|
{'', 'group:wood', ''},
|
||||||
{'', 'group:vines', ''},
|
{'', 'group:vines', ''},
|
||||||
{'', 'group:vines', ''}
|
{'', 'group:vines', ''}
|
||||||
}
|
}
|
||||||
|
|
||||||
vines.recipes['shears'] = {
|
vines.recipes['shears'] = {
|
||||||
{'', 'default:steel_ingot', ''},
|
{'', 'default:steel_ingot', ''},
|
||||||
{'default:stick', 'default:wood', 'default:steel_ingot'},
|
{'group:stick', 'group:wood', 'default:steel_ingot'},
|
||||||
{'', '', 'default:stick'}
|
{'', '', 'group:stick'}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
minetest.register_tool("vines:shears", {
|
minetest.register_tool("vines:shears", {
|
||||||
description = "Shears",
|
description = "Shears",
|
||||||
inventory_image = "vines_shears.png",
|
inventory_image = "vines_shears.png",
|
||||||
wield_image = "shears.png",
|
wield_image = "vines_shears.png",
|
||||||
stack_max = 1,
|
stack_max = 1,
|
||||||
max_drop_level=3,
|
max_drop_level=3,
|
||||||
tool_capabilities = {
|
tool_capabilities = {
|
||||||
|
Loading…
Reference in New Issue
Block a user