diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,7 +7,7 @@ farming = {} farming.mod = "redo" -farming.version = "1.30" +farming.version = "1.31" farming.path = minetest.get_modpath("farming") farming.select = { type = "fixed", @@ -598,6 +598,7 @@ farming.hemp = true farming.garlic = true farming.onion = true farming.pepper = true +farming.pineapple = true farming.donuts = true farming.rarety = 0.006 @@ -652,6 +653,7 @@ 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 +if farming.pineapple then dofile(farming.path.."/pineapple.lua") end dofile(farming.path.."/mapgen.lua") dofile(farming.path.."/compatibility.lua") -- Farming Plus compatibility |