From 6d366d810eab6b0151426b11b39f7a5fb865c765 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 5 Mar 2017 01:57:04 +0100 Subject: [PATCH] Use sandstone in non-v6 desert mapgen --- mods/MAPGEN/mcl_biomes/init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index 98523c10..ed163d5e 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -87,6 +87,7 @@ local function register_biomes() depth_filler = 3, node_riverbed = "mcl_core:sand", depth_riverbed = 2, + node_stone = "mcl_core:sandstone", y_min = 1, y_max = 31000, heat_point = 100, @@ -101,6 +102,7 @@ local function register_biomes() depth_filler = 3, node_riverbed = "mcl_core:redsand", depth_riverbed = 2, + node_stone = "mcl_core:hardened_clay", y_min = 1, y_max = 5, heat_point = 100, @@ -115,6 +117,7 @@ local function register_biomes() depth_filler = 1, node_riverbed = "mcl_core:redsand", depth_riverbed = 2, + node_stone = "mcl_core:hardened_clay", y_min = 1, y_max = 5, heat_point = 100,