From 8673f1eb5d33f9abfdafc68e67db431ad02c4fc2 Mon Sep 17 00:00:00 2001
From: tchncs <tchncs@vivaldi.net>
Date: Sun, 4 Dec 2016 23:24:42 +0100
Subject: [PATCH] make rotation random for the most decoration stuff

---
 mapgen.lua | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/mapgen.lua b/mapgen.lua
index c35797f..a8b21df 100644
--- a/mapgen.lua
+++ b/mapgen.lua
@@ -192,6 +192,7 @@ local add_schem = function(a, b, c, d, e, f, g)
 		y_min = d,
 		y_max = e,
 		schematic = f,
+        rotation = "random",
 		flags = "place_center_x, place_center_z",
 	})
 end
@@ -223,7 +224,7 @@ add_schem({"ethereal:crystal_dirt"}, 0.01, {"frost"}, 1, 100, path .. "frosttree
 add_schem({"ethereal:mushroom_dirt"}, 0.02, {"mushroom"}, 1, 100, path .. "mushroomone.mts", ethereal.mushroom)
 
 -- small lava crater
-add_schem({"ethereal:fiery_dirt"}, 0.01, {"fiery"}, 1, 100, path .. "volcanom.mts", ethereal.fiery)
+add_schem({"ethereal:fiery_dirt"}, 0.01, {"fiery"}, 30, 100, path .. "volcanom.mts", ethereal.fiery)
 
 -- large lava crater
 add_schem({"ethereal:fiery_dirt"}, 0.01, {"fiery"}, 1, 100, path .. "volcanol.mts", ethereal.fiery)
@@ -316,6 +317,7 @@ local add_node = function(a, b, c, d, e, f, g, h, i, j)
 		height_max = g,
 		spawn_by = h,
 		num_spawn_by = i,
+        rotation = "random",
 	})
 end
 
-- 
GitLab