Added craft recipe and fixed dependencies

master
prestidigitator 2013-03-07 16:14:32 -08:00
parent ddfa274b3a
commit 59a169f3c5
3 changed files with 15 additions and 4 deletions

View File

@ -1,7 +1,7 @@
Prestibags Minetest Mod 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 modify the player's normal inventory formspec, so they will not interfere with
any mods that do. Here are some of their features: any mods that do. Here are some of their features:
@ -20,9 +20,9 @@ damage.
Required Minetest Version: >=0.4.5 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"): Craft Recipies (W = "group:wool"):
— W — — W —
@ -36,7 +36,7 @@ Change History
Version 1.0 Version 1.0
* Released 2013-03-07 * Released 2013-03-07.
* First working version. * First working version.

0
depends.txt Normal file
View File

View File

@ -412,3 +412,14 @@ minetest.register_tool(
-- detached proxy that doesn't allow the bag's stack to be changed -- detached proxy that doesn't allow the bag's stack to be changed
-- while open! -- while open!
}) })
minetest.register_craft(
{
output = "prestibags:bag",
recipe =
{
{ "", "group:wool", "" },
{ "group:wool", "", "group:wool" },
{ "group:wool", "group:wool", "group:wool" },
}
})