diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-02-08 11:13:25 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-02-08 11:13:25 +0000 |
commit | 1e7214a6abc9a04bef78f028a76dc5d1d5bd7f28 (patch) | |
tree | 203f356f65bf8b7a90b5c11043b8c6c3cd065fce /init.lua | |
parent | 0843bd0696213358607ac44e886c5e13ccbffebb (diff) |
Added Pineapple and Pineapple Juice
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 |