map_content: add mapping for cauldron

Switch get_mods to use the xdecor module from minetest-mods, since the previous
link is a redirect now.
This commit is contained in:
Stefan Sauer 2016-08-22 13:46:11 +02:00
parent ed1a8f8ab0
commit 67aae2df9a
2 changed files with 6 additions and 1 deletions

View File

@ -558,6 +558,11 @@
114 7 stairs:stair_nether_brick 22
#endif
118 0 xdecor:cauldron_empty
118 1 xdecor:cauldron_empty // FIXME: should be 1/3 full
118 2 xdecor:cauldron_empty // FIXME: should be 2/3 full
118 3 xdecor:cauldron_empty // FIXME: should be full
123 mesecons_lightstone:lightstone_gray_off
124 mesecons_lightstone:lightstone_gray_on

View File

@ -56,7 +56,7 @@ if not os.path.exists(sys.argv[2]+"/get-mods.sh"):
md.write("#!/bin/sh\n")
md.write("# run this script to automatically get all the required mods\n")
md.write("cd worldmods\n")
md.write("for mod in LNJ2/carpet minetest-mods/signs_lib kilbith/xdecor minetest-mods/plantlife_modpack minetest-mods/homedecor_modpack Jeija/minetest-mod-mesecons minetest-mods/moreblocks pilzadam/nether minetest-mods/crops minetest-mods/quartz minetest-mods/biome_lib oOChainLynxOo/hardenedclay minetest-mods/lapis; do\n")
md.write("for mod in LNJ2/carpet minetest-mods/signs_lib minetest-mods/xdecor minetest-mods/plantlife_modpack minetest-mods/homedecor_modpack Jeija/minetest-mod-mesecons minetest-mods/moreblocks pilzadam/nether minetest-mods/crops minetest-mods/quartz minetest-mods/biome_lib oOChainLynxOo/hardenedclay minetest-mods/lapis; do\n")
md.write(" echo \"Fetching: $mod\"\n")
md.write(" s=`basename $mod`\n")
md.write(" curl -q -L -o master.zip https://codeload.github.com/$mod/zip/master\n")