forked from VoxeLibre/VoxeLibre
Merge pull request 'remove "mushroom" from the names of crimson fungus and warped fungus' (#3406) from SmokeyDope/MineClone2:change_fungus_name into master
Reviewed-on: MineClone2/MineClone2#3406 Reviewed-by: ancientmarinerdev <ancientmariner_dev@proton.me> Reviewed-by: PrairieWind <prairie.astronomer1@gmail.com>
This commit is contained in:
commit
428b1b2c12
|
@ -66,7 +66,9 @@ local function spread_nether_plants(pos,node)
|
|||
end
|
||||
|
||||
minetest.register_node("mcl_crimson:warped_fungus", {
|
||||
description = S("Warped Fungus Mushroom"),
|
||||
description = S("Warped Fungus"),
|
||||
_tt_help = S("Warped fungus is a mushroom found in the nether's warped forest."),
|
||||
_doc_items_longdesc = S("Warped fungus is a mushroom found in the nether's warped forest."),
|
||||
drawtype = "plantlike",
|
||||
tiles = { "farming_warped_fungus.png" },
|
||||
inventory_image = "farming_warped_fungus.png",
|
||||
|
@ -95,7 +97,7 @@ minetest.register_node("mcl_crimson:warped_fungus", {
|
|||
|
||||
mcl_flowerpots.register_potted_flower("mcl_crimson:warped_fungus", {
|
||||
name = "warped fungus",
|
||||
desc = S("Warped Fungus Mushroom"),
|
||||
desc = S("Warped Fungus"),
|
||||
image = "farming_warped_fungus.png",
|
||||
})
|
||||
|
||||
|
@ -450,7 +452,9 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_crimson:crimson_fungus", {
|
||||
description = S("Crimson Fungus Mushroom"),
|
||||
description = S("Crimson Fungus"),
|
||||
_tt_help = S("Crimson fungus is a mushroom found in the nether's crimson forest."),
|
||||
_doc_items_longdesc = S("Crimson fungus is a mushroom found in the nether's crimson forest."),
|
||||
drawtype = "plantlike",
|
||||
tiles = { "farming_crimson_fungus.png" },
|
||||
inventory_image = "farming_crimson_fungus.png",
|
||||
|
@ -483,7 +487,7 @@ minetest.register_node("mcl_crimson:crimson_fungus", {
|
|||
|
||||
mcl_flowerpots.register_potted_flower("mcl_crimson:crimson_fungus", {
|
||||
name = "crimson fungus",
|
||||
desc = S("Crimson Fungus Mushroom"),
|
||||
desc = S("Crimson Fungus"),
|
||||
image = "farming_crimson_fungus.png",
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue