diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-10-26 11:32:15 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-10-26 11:32:15 +0000 |
commit | 85dfd7aebab4d246405a6eb72c0704d5d52fca2e (patch) | |
tree | bdf4abc2f3eac80b1d8e038f96300ab5646e6c74 /mapgen_v7n.lua | |
parent | 11d2399a6246857dca52c0bb467f55617330a9c9 (diff) |
Added farming redo's grape bushel to mapgen
Diffstat (limited to 'mapgen_v7n.lua')
-rw-r--r-- | mapgen_v7n.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mapgen_v7n.lua b/mapgen_v7n.lua index 2d5c0ca..0e6bc43 100644 --- a/mapgen_v7n.lua +++ b/mapgen_v7n.lua @@ -985,6 +985,16 @@ minetest.register_decoration({ decoration = "farming:beanbush",
})
+-- grape bushel
+minetest.register_decoration({
+ deco_type = "simple",
+ place_on = {"ethereal:green_dirt", "ethereal:prairie_dirt"},
+ sidelen = 80,
+ fill_ratio = 0.025,
+ biomes = {"grassytwo", "grassy", "prairie"},
+ decoration = "farming:grapebush",
+})
+
end
-- is waterlily in game?
|