diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-01-22 15:01:43 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-01-22 15:01:43 +0000 |
commit | dd697625abd5f04dfa4b276a3f2b1ae85f8396c2 (patch) | |
tree | 349825d4bc3b9a5a61a8b3724bea175f37467035 /init.lua | |
parent | 1b71f29fbe82d181049276640a76209fc9db07b3 (diff) |
added garlic, onion and pepper thanks to Grizzly Adams
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -7,7 +7,7 @@ farming = {} farming.mod = "redo" -farming.version = "1.29" +farming.version = "1.30" farming.path = minetest.get_modpath("farming") farming.select = { type = "fixed", @@ -595,6 +595,9 @@ farming.grapes = true farming.barley = true farming.chili = true farming.hemp = true +farming.garlic = true +farming.onion = true +farming.pepper = true farming.donuts = true farming.rarety = 0.006 @@ -646,6 +649,9 @@ if farming.barley then dofile(farming.path.."/barley.lua") end if farming.chili then dofile(farming.path.."/chili.lua") end if farming.hemp then dofile(farming.path.."/hemp.lua") end if farming.donuts then dofile(farming.path.."/donut.lua") end +if farming.garlic then dofile(farming.path.."/garlic.lua") end +if farming.onion then dofile(farming.path.."/onion.lua") end +if farming.pepper then dofile(farming.path.."/pepper.lua") end dofile(farming.path.."/mapgen.lua") dofile(farming.path.."/compatibility.lua") -- Farming Plus compatibility |