[default & seawrecks & whiteshell & clams] Updates

- Replace `height_max` and `height_min` fields
This commit is contained in:
LeMagnesium 2015-10-26 13:57:54 +01:00
parent e9b2fd984a
commit 53ce905293
4 changed files with 13 additions and 13 deletions

View File

@ -1127,7 +1127,7 @@ function default.register_mgv6_decorations()
y_max = 1, y_max = 1,
decoration = "default:papyrus", decoration = "default:papyrus",
height = 2, height = 2,
height_max = 4, y_max = 4,
spawn_by = "default:water_source", spawn_by = "default:water_source",
num_spawn_by = 1, num_spawn_by = 1,
}) })
@ -1150,7 +1150,7 @@ function default.register_mgv6_decorations()
y_max = 30, y_max = 30,
decoration = "default:cactus", decoration = "default:cactus",
height = 3, height = 3,
height_max = 4, y_max = 4,
}) })
-- Long grasses -- Long grasses
@ -1377,7 +1377,7 @@ function default.register_decorations()
y_max = 31000, y_max = 31000,
decoration = "default:cactus", decoration = "default:cactus",
height = 2, height = 2,
height_max = 5, y_max = 5,
}) })
-- Papyrus -- Papyrus

View File

@ -160,8 +160,8 @@ minetest.register_ore({
clust_scarcity = 9*9*9, clust_scarcity = 9*9*9,
clust_num_ores = 16, clust_num_ores = 16,
clust_size = 4, clust_size = 4,
height_max = -4, y_max = -4,
height_min = -60, y_min = -60,
}) })
minetest.register_ore({ minetest.register_ore({
@ -171,8 +171,8 @@ minetest.register_ore({
clust_scarcity = 9*9*9, clust_scarcity = 9*9*9,
clust_num_ores = 16, clust_num_ores = 16,
clust_size = 4, clust_size = 4,
height_max = -4, y_max = -4,
height_min = -60, y_min = -60,
}) })

View File

@ -157,8 +157,8 @@ minetest.register_ore({
clust_scarcity = 30*30*30, clust_scarcity = 30*30*30,
clust_num_ores = 1, clust_num_ores = 1,
clust_size = 12, clust_size = 12,
height_max = -4, y_max = -4,
height_min = -31000, y_min = -31000,
}) })
minetest.register_ore({ minetest.register_ore({
@ -168,8 +168,8 @@ minetest.register_ore({
clust_scarcity = 30*30*30, clust_scarcity = 30*30*30,
clust_num_ores = 1, clust_num_ores = 1,
clust_size = 12, clust_size = 12,
height_max = -8, y_max = -8,
height_min = -31000, y_min = -31000,
}) })
local function generate_ore(name, wherein, minp, maxp, seed, chunks_per_volume, chunk_size, ore_per_chunk, height_min, height_max) local function generate_ore(name, wherein, minp, maxp, seed, chunks_per_volume, chunk_size, ore_per_chunk, height_min, height_max)

View File

@ -32,8 +32,8 @@ minetest.register_ore({
clust_scarcity = 10*10*10, clust_scarcity = 10*10*10,
clust_num_ores = 18, clust_num_ores = 18,
clust_size = 6, clust_size = 6,
height_max = 31000, y_max = 31000,
height_min = -31000, y_min = -31000,
}) })