diff --git a/mods/mobs/locale/mobs.de.tr b/mods/mobs/locale/mobs.de.tr index 3151027..f44882f 100644 --- a/mods/mobs/locale/mobs.de.tr +++ b/mods/mobs/locale/mobs.de.tr @@ -76,7 +76,7 @@ Did you know cotton seed not only grow on dirt, but also on sand? But it still n A truly epic story!=Eine sagenhafte Geschichte! Ooh, a shiny pearl! Unfortunately, I don't know what it's good for.=Oh, eine glänzende Perle! Leider weiß ich nicht, wozu sie gut ist. Place it on the ground in sunlight and it will grow to a tree.=Platziere ihn auf dem Boden im Sonnenlicht und er wird zu einem Baum heranwachsen. -Use this to get wool from sheep.=Benutze dies, um an die Wolle von Schafen zu kommen. +Use this to trim plants and get wool from sheep.=Damit kannst du Pflanzen abschneiden und Wolle von Schafen erhalten. Papyrus likes to grow next to water.=Papyrus wächst gerne in der Nähe von Wasser. When I was I kid, I always liked to climb on the papyrus.=Als ich ein Kind war, kletterte ich gerne den Papyrus rauf. Cacti like to grow on sand. They are also a food source, if you're really desperate.=Kakteen wachen auf dem Sand. Sie sind auch eine Nahrungsquelle, wenn du wirklich verzweifelt bist. diff --git a/mods/mobs/locale/template.txt b/mods/mobs/locale/template.txt index c781149..a7cdf14 100644 --- a/mods/mobs/locale/template.txt +++ b/mods/mobs/locale/template.txt @@ -79,7 +79,7 @@ Every kid knows seeds need soil, water and sunlight.= A truly epic story!= Ooh, a shiny pearl! Unfortunately, I don't know what it's good for.= Place it on the ground in sunlight and it will grow to a tree.= -Use this to get wool from sheep.= +Use this to trim plants and get wool from sheep.= Papyrus likes to grow next to water.= When I was I kid, I always liked to climb on the papyrus.= Cacti like to grow on sand. They are also a food source, if you're really desperate.= diff --git a/mods/mobs/mob_npc.lua b/mods/mobs/mob_npc.lua index 81f3356..661a91c 100644 --- a/mods/mobs/mob_npc.lua +++ b/mods/mobs/mob_npc.lua @@ -243,7 +243,7 @@ for _, npc_type_table in pairs(npc_types) do elseif minetest.get_item_group(iname, "sapling") > 0 then say(S("Place it on the ground in sunlight and it will grow to a tree."), name) elseif minetest.get_item_group(iname, "shears") > 0 then - say(S("Use this to get wool from sheep."), name) + say(S("Use this to trim plants and get wool from sheep."), name) elseif iname == "default:papyrus" then if npc_type == "farmer" then say(S("Papyrus likes to grow next to water."), name)