From: Auke Kok Date: Thu, 7 Jan 2016 15:21:19 +0000 (-0800) Subject: Replace aliased fertile mushrooms. X-Git-Tag: 0.4.14~162 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=556f0d48e31a0e98095f5a148051e027a56ff86e;p=oweals%2Fminetest_game.git Replace aliased fertile mushrooms. This is a non-issue: these are aliased to normal mushrooms. For clarity, we replace them with the normal mushrooms here as well. --- diff --git a/mods/flowers/mapgen.lua b/mods/flowers/mapgen.lua index 51525c74..59ce97a3 100644 --- a/mods/flowers/mapgen.lua +++ b/mods/flowers/mapgen.lua @@ -70,8 +70,8 @@ function flowers.register_mgv6_decorations() register_mgv6_flower("viola") register_mgv6_flower("dandelion_white") - register_mgv6_mushroom("mushroom_fertile_brown") - register_mgv6_mushroom("mushroom_fertile_red") + register_mgv6_mushroom("mushroom_brown") + register_mgv6_mushroom("mushroom_red") register_mgv6_waterlily() end @@ -151,8 +151,8 @@ function flowers.register_decorations() register_flower(1133, "viola") register_flower(73133, "dandelion_white") - register_mushroom("mushroom_fertile_brown") - register_mushroom("mushroom_fertile_red") + register_mushroom("mushroom_brown") + register_mushroom("mushroom_red") register_waterlily() end