Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Illuna-Minetest
bags
Commits
78067127
Commit
78067127
authored
Sep 25, 2016
by
Milan
Browse files
re-add leather bag craft (by ClaudiusMinimus)
parent
66f4c912
Changes
1
Hide whitespace changes
Inline
Side-by-side
bags/init.lua
View file @
78067127
...
...
@@ -133,14 +133,24 @@ minetest.register_tool("bags:large", {
-- register bag crafts
minetest
.
register_craft
({
output
=
"bags:small"
,
recipe
=
{
output
=
"bags:small"
,
recipe
=
{
{
""
,
"farming:cotton"
,
""
},
{
"mobs:leather"
,
"mobs:leather"
,
"mobs:leather"
},
{
"mobs:leather"
,
"mobs:leather"
,
"mobs:leather"
},
},
})
-- added alternative recipe to make small bags using hemp
minetest
.
register_craft
({
output
=
"bags:small"
,
recipe
=
{
{
""
,
"farming:cotton"
,
""
},
-- material changed from leather to hemp:
{
"hemp:hemp_fabric"
,
"hemp:hemp_fabric"
,
"hemp:hemp_fabric"
},
{
"hemp:hemp_fabric"
,
"hemp:hemp_fabric"
,
"hemp:hemp_fabric"
},
},
})
minetest
.
register_craft
({
output
=
"bags:medium"
,
recipe
=
{
...
...
@@ -151,6 +161,7 @@ minetest.register_craft({
{
"farming:cotton"
,
"bags:small"
,
"farming:cotton"
},
},
})
minetest
.
register_craft
({
output
=
"bags:large"
,
recipe
=
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment