diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-10-26 11:22:40 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-10-26 11:22:40 +0000 |
commit | 013ab59da99efd7b97cbf86588cca99b9e7f313d (patch) | |
tree | 26798c6045a827ac56f5081b4f37b4109f6c2ee9 /mapgen.lua | |
parent | e2c1584f8e30d87a08c4ff576db7ba67cdda7b8b (diff) |
Added grape bush, grapes and trellis for growing
Diffstat (limited to 'mapgen.lua')
-rw-r--r-- | mapgen.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -34,6 +34,7 @@ function farming.register_mgv6_decorations() register_plant("rhubarb_3", 3, 15, "group:tree", 1) register_plant("blueberry_4", 3, 10, "", -1) register_plant("beanbush", 18, 35, "", -1) + register_plant("grapebush", 25, 45, "", -1) end -- v7 maps have a beach so plants growing near water is limited to 6- high @@ -51,6 +52,7 @@ function farming.register_mgv7_decorations() register_plant("rhubarb_3", 3, 15, "group:tree", 1) register_plant("blueberry_4", 3, 10, "", -1) register_plant("beanbush", 18, 35, "", -1) + register_plant("grapebush", 25, 45, "", -1) end -- detect mapgen |