fix sushi typo :)

This commit is contained in:
tenplus1 2021-03-30 17:45:30 +01:00
parent 17a1c930a7
commit 7ec1e5271e

View File

@ -431,14 +431,14 @@ minetest.register_craft({
})
-- Tamago (sushi with sweet egg)
minetest.register_craftitem("ethereal:sushi_tomago", {
description = S("Tomago Sushi"),
minetest.register_craftitem("ethereal:sushi_tamago", {
description = S("Tamago Sushi"),
inventory_image = "ethereal_sushi_tamago.png",
on_use = minetest.item_eat(2),
})
minetest.register_craft({
output = "ethereal:sushi_tomago 2",
output = "ethereal:sushi_tamago 2",
recipe = {
{"group:food_seaweed", "group:food_egg", "group:food_rice"}
}