there was a hidden farming dependency, probably never noticed because minetest-game has both default and farming

This commit is contained in:
FaceDeer
2017-01-31 20:11:12 -07:00
parent 3224ddad38
commit 36a20910ba
2 changed files with 11 additions and 8 deletions

View File

@ -1,5 +1,6 @@
-- Misc -- Misc
if minetest.get_modpath("farming") then
minetest.register_craft({ minetest.register_craft({
output = 'ropes:ropesegment', output = 'ropes:ropesegment',
recipe = { recipe = {
@ -8,6 +9,7 @@ minetest.register_craft({
{'farming:cotton'} {'farming:cotton'}
} }
}) })
end
minetest.register_craftitem("ropes:ropesegment", { minetest.register_craftitem("ropes:ropesegment", {
description = "Rope", description = "Rope",

View File

@ -1,2 +1,3 @@
default default
farming?
doc? doc?