Tweak infotext of microwave to say "Microwave is ..." instead of "Furnace is..."

This commit is contained in:
Vanessa Ezekowitz 2013-06-21 01:55:22 -04:00
parent 8cb01f366d
commit 1259fe77c8
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ minetest.register_node("homedecor:microwave_oven", {
if listname == "fuel" then
if minetest.get_craft_result({method="fuel",width=1,items={stack}}).time ~= 0 then
if inv:is_empty("src") then
meta:set_string("infotext",S("Furnace is empty"))
meta:set_string("infotext",S("Microwave is empty"))
end
return stack:get_count()
else
@ -83,7 +83,7 @@ minetest.register_node("homedecor:microwave_oven", {
if to_list == "fuel" then
if minetest.get_craft_result({method="fuel",width=1,items={stack}}).time ~= 0 then
if inv:is_empty("src") then
meta:set_string("infotext",S("Furnace is empty"))
meta:set_string("infotext",S("Microwave is empty"))
end
return count
else