diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-07 10:32:33 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-07 10:32:33 +0100 |
commit | d9de5c5d9081ba998edd02afed61c21cdafefaac (patch) | |
tree | 3b7e957ad22305e1e790dd0cd522b652b796b29d | |
parent | 30bcca0a895f18825d5b07f89b7f9ce21aa91c4d (diff) |
added blue agave from wine mod to desert areas
-rw-r--r-- | mapgen.lua | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -803,3 +803,14 @@ minetest.register_decoration({ })
end
+
+if ethereal.desert and minetest.get_modpath("wine") then
+minetest.register_decoration({
+ deco_type = "simple",
+ place_on = {"default:desert_sand"},
+ sidelen = 16,
+ fill_ratio = 0.001,
+ biomes = {"desert"},
+ decoration = {"wine:blue_agave"},
+})
+end
|