diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-12-08 14:47:22 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-12-08 14:47:22 +0000 |
commit | 171a67ebf2be68ce08c706c436cb579bd2fa0ad6 (patch) | |
tree | 6db4fd6b3cdc58048f08ee303c73839c3d8136fc /mapgen.lua | |
parent | dc894725c71fa2fbb6d33cd4d76c8f78a009d241 (diff) |
Code tweak and tidy, fixed rhubarb spawning
Diffstat (limited to 'mapgen.lua')
-rw-r--r-- | mapgen.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -31,13 +31,13 @@ function farming.register_mgv6_decorations() register_plant("melon_8", 1, 20, "group:water", 1) register_plant("pumpkin_8", 1, 20, "group:water", 1) register_plant("raspberry_4", 3, 10, "", -1) - register_plant("rhubarb_3", 3, 15, "group:tree", 1) + register_plant("rhubarb_3", 3, 15, "", -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 +-- v7 maps have a beach so plants growing near water is limited to 6 high function farming.register_mgv7_decorations() register_plant("potato_3", 15, 40, "", -1) register_plant("tomato_7", 5, 20, "", -1) @@ -49,7 +49,7 @@ function farming.register_mgv7_decorations() register_plant("melon_8", 1, 6, "", -1) register_plant("pumpkin_8", 1, 6, "", -1) register_plant("raspberry_4", 3, 10, "", -1) - register_plant("rhubarb_3", 3, 15, "group:tree", 1) + register_plant("rhubarb_3", 3, 15, "", -1) register_plant("blueberry_4", 3, 10, "", -1) register_plant("beanbush", 18, 35, "", -1) register_plant("grapebush", 25, 45, "", -1) |