Make Fish and Salmon Smokable

This commit is contained in:
PrairieAstronomer 2022-05-17 09:48:51 -06:00
parent e1a6baffe9
commit 29e18015b8
1 changed files with 2 additions and 2 deletions

View File

@ -426,7 +426,7 @@ minetest.register_craftitem("mcl_fishing:fish_raw", {
on_place = minetest.item_eat(2),
on_secondary_use = minetest.item_eat(2),
stack_max = 64,
groups = { food=2, eatable = 2 },
groups = { food=2, eatable = 2, smoker_cookable = 1 },
_mcl_saturation = 0.4,
})
@ -456,7 +456,7 @@ minetest.register_craftitem("mcl_fishing:salmon_raw", {
on_place = minetest.item_eat(2),
on_secondary_use = minetest.item_eat(2),
stack_max = 64,
groups = { food=2, eatable = 2 },
groups = { food=2, eatable = 2, smoker_cookable = 1 },
_mcl_saturation = 0.4,
})