Update 'mods/ethereal/fishing.lua'

This commit is contained in:
thunderdog1138 2020-07-17 01:01:34 +00:00
parent ac5dc39316
commit d368a87f01
1 changed files with 6 additions and 6 deletions

View File

@ -26,16 +26,16 @@ minetest.register_craft({
cooktime = 2, cooktime = 2,
}) })
-- Sashimi (Thanks to Natalia Grosner for letting me use the sashimi image) -- Sashi (Thanks to Natalia Grosner for letting me use the sashi image)
minetest.register_craftitem("ethereal:sashimi", { minetest.register_craftitem("ethereal:sashi", {
description = S("Sashimi"), description = S("Sashi"),
inventory_image = "sashimi.png", inventory_image = "sashi.png",
wield_image = "sashimi.png", wield_image = "sashi.png",
on_use = minetest.item_eat(4), on_use = minetest.item_eat(4),
}) })
minetest.register_craft({ minetest.register_craft({
output = "ethereal:sashimi 2", output = "ethereal:sashi 2",
recipe = { recipe = {
{"group:food_seaweed", "group:food_fish_raw", "group:food_seaweed"}, {"group:food_seaweed", "group:food_fish_raw", "group:food_seaweed"},
} }