Adjust crafting of lookup tool

This commit is contained in:
Wuzzy 2017-03-18 01:04:45 +01:00
parent 2be856f3d1
commit 14d7a65eb8
2 changed files with 12 additions and 11 deletions

View File

@ -1,5 +1,5 @@
doc
doc_items
doc_basics?
default?
mcl_core?
intllib?

View File

@ -170,18 +170,19 @@ minetest.register_tool("doc_identifier:identifier_liquid", {
on_secondary_use = doc_identifier.solid_mode,
})
minetest.register_craft({
output = "doc_identifier:identifier_solid",
recipe = { {"group:stick", "group:stick" },
{"", "group:stick"},
{"group:stick", ""} }
})
if minetest.get_modpath("default") ~= nil then
-- TODO: These crafting recipes are temporary. Add a different way to obtain the lookup tool
if minetest.get_modpath("mcl_core") ~= nil then
minetest.register_craft({
output = "doc_identifier:identifier_solid",
recipe = { { "default:glass" },
{ "group:stick" } }
recipe = { {"mcl_core:stick", "mcl_core:stick" },
{"", "mcl_core:stick"},
{"mcl_core:stick", ""} }
})
minetest.register_craft({
output = "doc_identifier:identifier_solid",
recipe = { { "mcl_core:glass" },
{ "mcl_core:stick" } }
})
end