diff options
-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?
|