summaryrefslogtreecommitdiff
path: root/mapgen_v7n.lua
diff options
context:
space:
mode:
authortenplus1 <kinsellaja@yahoo.com>2015-04-25 09:05:34 +0100
committertenplus1 <kinsellaja@yahoo.com>2015-04-25 09:05:34 +0100
commitce55eacc47b06043283fcdcd012a363b1368d5f6 (patch)
treefcfb3b9ba4d1e20083a878b0ffcf0ffa678eecf0 /mapgen_v7n.lua
parent9e6a47d97dfd3ceb1d8c60fa65dcd7add45cacaa (diff)
Placed leaves will not decay, added beanbush to mapgen
Diffstat (limited to 'mapgen_v7n.lua')
-rw-r--r--mapgen_v7n.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/mapgen_v7n.lua b/mapgen_v7n.lua
index de25bf3..c8afcd4 100644
--- a/mapgen_v7n.lua
+++ b/mapgen_v7n.lua
@@ -746,4 +746,13 @@ minetest.register_decoration({
num_spawn_by = 1,
})
+-- green beans
+minetest.register_decoration({
+ deco_type = "simple",
+ place_on = {"ethereal:green_dirt"},
+ sidelen = 80,
+ fill_ratio = 0.035,
+ biomes = {"grassytwo"},
+ decoration = "farming:beanbush",
+})
end