From 209a2ca6785ba95383a766300e6d036c980d3db7 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 22 Aug 2017 15:57:19 +0200 Subject: [PATCH] Generate sugar canes again --- mods/MAPGEN/mcl_biomes/init.lua | 8 ++++---- mods/MAPGEN/mcl_mapgen_core/init.lua | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index 298e14cdd..5a466822b 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -1415,8 +1415,8 @@ local function register_decorations() -- Sugar canes minetest.register_decoration({ - deco_type = "schematic", - place_on = {"mcl_core:dirt", "mcl_core:dirt_with_grass", "group:sand", "mcl_core:podzol"}, + deco_type = "simple", + place_on = {"mcl_core:dirt", "mcl_core:coarse_dirt", "mcl_core:dirt_with_grass", "group:sand", "mcl_core:podzol", "mcl_core:reeds"}, sidelen = 16, noise_params = { offset = -0.3, @@ -1426,9 +1426,9 @@ local function register_decorations() octaves = 3, persist = 0.7 }, - biomes = {"grassland", "beach", "red_desert", "desert", "swamp"}, + biomes = {"grassland", "grassland_dunes", "snowy_grassland", "beach", "red_desert", "desert", "swamp"}, y_min = 1, - y_max = 1, + y_max = mcl_vars.mg_overworld_max, decoration = "mcl_core:reeds", height = 1, height_max = 3, diff --git a/mods/MAPGEN/mcl_mapgen_core/init.lua b/mods/MAPGEN/mcl_mapgen_core/init.lua index 59282ea02..c99073e9e 100644 --- a/mods/MAPGEN/mcl_mapgen_core/init.lua +++ b/mods/MAPGEN/mcl_mapgen_core/init.lua @@ -624,11 +624,11 @@ local function register_mgv6_decorations() -- Sugar canes minetest.register_decoration({ - deco_type = "schematic", - place_on = {"mcl_core:dirt", "mcl_core:dirt_with_grass", "group:sand", "mcl_core:podzol"}, + deco_type = "simple", + place_on = {"mcl_core:dirt", "mcl_core:coarse_dirt", "mcl_core:dirt_with_grass", "group:sand", "mcl_core:podzol", "mcl_core:reeds"}, sidelen = 16, noise_params = { - offset = -0.3, + offset = 0.3, scale = 0.7, spread = {x = 100, y = 100, z = 100}, seed = 2, @@ -636,7 +636,7 @@ local function register_mgv6_decorations() persist = 0.7 }, y_min = 1, - y_max = 1, + y_max = mcl_vars.mg_overworld_max, decoration = "mcl_core:reeds", height = 1, height_max = 3,