From: Vanessa Ezekowitz Date: Mon, 22 Jul 2013 05:02:29 +0000 (-0400) Subject: fix the check for technic for craft recipes, use optional depends to X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=c9b180116f8405a9f83da0730382add85ff410c0;p=zefram%2Fminetest%2Fpipeworks.git fix the check for technic for craft recipes, use optional depends to make sure it loads first --- diff --git a/crafts.lua b/crafts.lua index 462f760..d5670a1 100644 --- a/crafts.lua +++ b/crafts.lua @@ -174,8 +174,7 @@ end -- If the technic mod is present, then don't bother registering the recipes -- for the various tubes, as technic has its own recipes for those. -if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == nil and - io.open(minetest.get_modpath("pipeworks").."/../technic_master/technic/init.lua", "r") == nil then +if not minetest.get_modpath("technic") then minetest.register_craft( { output = "pipeworks:tube 12", diff --git a/depends.txt b/depends.txt index 1b3c797..a7d94a5 100644 --- a/depends.txt +++ b/depends.txt @@ -1,2 +1,3 @@ default mesecons? +technic?