Add various factoids and complete some food help
This commit is contained in:
parent
14a5d7803f
commit
c2fbe2ad55
13 changed files with 101 additions and 8 deletions
|
@ -134,7 +134,7 @@ minetest.register_craftitem("mcl_core:apple", {
|
|||
stack_max = 64,
|
||||
on_place = minetest.item_eat(4),
|
||||
on_secondary_use = minetest.item_eat(4),
|
||||
groups = { food = 2 },
|
||||
groups = { food = 2, eatable = 4 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:apple_gold", {
|
||||
|
@ -145,5 +145,5 @@ minetest.register_craftitem("mcl_core:apple_gold", {
|
|||
stack_max = 64,
|
||||
on_place = minetest.item_eat(8),
|
||||
on_secondary_use = minetest.item_eat(8),
|
||||
groups = { food = 2 },
|
||||
groups = { food = 2, eatable = 8 },
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue