From 80e03581c855397048bc88d0a7a274cabd00a37c Mon Sep 17 00:00:00 2001 From: Juraj Vajda Date: Mon, 6 Mar 2023 14:30:54 -0500 Subject: [PATCH] add coral skeleton to ocean decorations --- mapgen_coral_forest_ocean.lua | 6 +++++- mapgen_crystal_forest_ocean.lua | 3 ++- mapgen_cursed_lands_ocean.lua | 5 ++++- mapgen_frosted_icesheet_ocean.lua | 6 +++++- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/mapgen_coral_forest_ocean.lua b/mapgen_coral_forest_ocean.lua index 1fad09f..97cbf09 100644 --- a/mapgen_coral_forest_ocean.lua +++ b/mapgen_coral_forest_ocean.lua @@ -94,5 +94,9 @@ minetest.register_decoration({ y_max = y_max - 5 > y_min and y_max - 5 or y_max, y_min = y_max - 11 > y_min and y_max - 11 or y_min, flags = 'force_placement', - decoration = { 'everness:coral_corals', 'everness:coral_jellyfish' }, + decoration = { + 'everness:coral_corals', + 'everness:coral_jellyfish', + 'default:coral_skeleton' + }, }) diff --git a/mapgen_crystal_forest_ocean.lua b/mapgen_crystal_forest_ocean.lua index 6cbf8f9..c8a9d6c 100644 --- a/mapgen_crystal_forest_ocean.lua +++ b/mapgen_crystal_forest_ocean.lua @@ -69,6 +69,7 @@ minetest.register_decoration({ flags = 'force_placement', decoration = { 'everness:crystal_coral_dark', - 'everness:crystal_coral_light' + 'everness:crystal_coral_light', + 'default:coral_skeleton' }, }) diff --git a/mapgen_cursed_lands_ocean.lua b/mapgen_cursed_lands_ocean.lua index be46ee9..1de5c7c 100644 --- a/mapgen_cursed_lands_ocean.lua +++ b/mapgen_cursed_lands_ocean.lua @@ -94,7 +94,10 @@ minetest.register_decoration({ y_max = y_max - (y_max + 5), y_min = y_max - (y_max + 10), flags = 'force_placement', - decoration = 'everness:sand_with_spine_kelp', + decoration = { + 'everness:sand_with_spine_kelp', + 'default:coral_skeleton' + }, param2 = 48, param2_max = 96, }) diff --git a/mapgen_frosted_icesheet_ocean.lua b/mapgen_frosted_icesheet_ocean.lua index a3f007b..e8e538b 100644 --- a/mapgen_frosted_icesheet_ocean.lua +++ b/mapgen_frosted_icesheet_ocean.lua @@ -67,5 +67,9 @@ minetest.register_decoration({ y_max = y_max - (y_max + 2), -- -2 y_min = y_max - (y_max + 50), -- -50 flags = 'force_placement', - decoration = { 'everness:coral_starfish', 'everness:coral_frosted' }, + decoration = { + 'everness:coral_starfish', + 'everness:coral_frosted', + 'default:coral_skeleton' + }, })