mirror of
https://github.com/prestidigitator/minetest-mod-prestibags.git
synced 2024-12-20 21:05:47 +01:00
Added craft recipe and fixed dependencies
This commit is contained in:
parent
ddfa274b3a
commit
59a169f3c5
@ -1,7 +1,7 @@
|
||||
Prestibags Minetest Mod
|
||||
=======================
|
||||
|
||||
Pretibags are simple bags that act like chests you can pick up. They do not
|
||||
Prestibags are simple bags that act like chests you can pick up. They do not
|
||||
modify the player's normal inventory formspec, so they will not interfere with
|
||||
any mods that do. Here are some of their features:
|
||||
|
||||
@ -20,9 +20,9 @@ damage.
|
||||
|
||||
Required Minetest Version: >=0.4.5
|
||||
|
||||
Dependencies: default
|
||||
Dependencies: (none)
|
||||
|
||||
Soft Dependencies: wool (for crafting), fire
|
||||
Soft Dependencies: default, wool (for crafting), fire
|
||||
|
||||
Craft Recipies (W = "group:wool"):
|
||||
— W —
|
||||
@ -36,7 +36,7 @@ Change History
|
||||
|
||||
Version 1.0
|
||||
|
||||
* Released 2013-03-07
|
||||
* Released 2013-03-07.
|
||||
* First working version.
|
||||
|
||||
|
||||
|
0
depends.txt
Normal file
0
depends.txt
Normal file
11
init.lua
11
init.lua
@ -412,3 +412,14 @@ minetest.register_tool(
|
||||
-- detached proxy that doesn't allow the bag's stack to be changed
|
||||
-- while open!
|
||||
})
|
||||
|
||||
minetest.register_craft(
|
||||
{
|
||||
output = "prestibags:bag",
|
||||
recipe =
|
||||
{
|
||||
{ "", "group:wool", "" },
|
||||
{ "group:wool", "", "group:wool" },
|
||||
{ "group:wool", "group:wool", "group:wool" },
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user