if not using mineclone enable defaults

This commit is contained in:
tenplus1 2023-09-06 10:00:46 +01:00
parent 8606fbd202
commit af48a0e661
1 changed files with 3 additions and 3 deletions

View File

@ -729,7 +729,7 @@ end
dofile(farming.path .. "/items.lua") dofile(farming.path .. "/items.lua")
-- important items -- important items
if farming.mtg then if not farming.mcl then
dofile(farming.path .. "/soil.lua") dofile(farming.path .. "/soil.lua")
dofile(farming.path .. "/hoes.lua") dofile(farming.path .. "/hoes.lua")
end end
@ -738,7 +738,7 @@ dofile(farming.path.."/grass.lua")
dofile(farming.path.."/utensils.lua") dofile(farming.path.."/utensils.lua")
-- default crops -- default crops
if farming.mtg then if not farming.mcl then
dofile(farming.path.."/crops/wheat.lua") dofile(farming.path.."/crops/wheat.lua")
end end
@ -806,7 +806,7 @@ ddoo("ginger.lua", farming.ginger)
dofile(farming.path .. "/food.lua") dofile(farming.path .. "/food.lua")
if farming.mtg then if not farming.mcl then
dofile(farming.path .. "/compatibility.lua") -- Farming Plus compatibility dofile(farming.path .. "/compatibility.lua") -- Farming Plus compatibility
end end