From 0d736c58e88988fe70195e84331fc86cc0017479 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 13 Sep 2017 03:58:33 +0200 Subject: [PATCH] Fix 2 mistakes in mcl_biomes --- mods/MAPGEN/mcl_biomes/init.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index 40ef02226..6bfa3325e 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -359,10 +359,6 @@ local function register_biomes() -- TODO: Should occour only at real beaches. minetest.register_biome({ name = "StoneBeach", - node_top = "mcl_core:dirt", - depth_top = 1, - node_filler = "mcl_core:dirt", - filler_depth = 2, node_riverbed = "mcl_core:sand", depth_riverbed = 1, y_min = -6, @@ -375,8 +371,6 @@ local function register_biomes() name = "StoneBeach_ocean", node_top = "mcl_core:dirt", depth_top = 1, - node_filler = "mcl_core:dirt", - filler_depth = 2, node_riverbed = "mcl_core:sand", depth_riverbed = 1, y_min = OCEAN_MIN, @@ -2497,7 +2491,7 @@ local function register_decorations() biomes = {"JungleEdge", "JungleEdgeM"}, y_min = 3, y_max = mcl_vars.mg_overworld_max, - schematic_jungle_bush_schematic, + schematic = jungle_bush_schematic, flags = "place_center_x, place_center_z", })