Add stick group

This commit is contained in:
Wuzzy 2017-02-07 02:54:17 +01:00
parent bb7543923f
commit 94f257028e
2 changed files with 2 additions and 1 deletions

1
API.md
View File

@ -43,6 +43,7 @@ This section explains all the used groups in this subgame.
* `coal=1`: Coal of any kind (lumps only, not blocks)
* `wool=1`: Wool (only full blocks)
* `carpet=1:` (Wool) carpet
* `stick=1`: Stick
### Declarative groups
These groups are used mostly for informational purposes

View File

@ -8,7 +8,7 @@ minetest.register_craftitem("mcl_core:stick", {
description = "Stick",
inventory_image = "default_stick.png",
stack_max = 64,
groups = { craftitem=1 },
groups = { craftitem=1, stick=1 },
})
minetest.register_craftitem("mcl_core:paper", {