mirror of
https://github.com/minetest-mods/moreores.git
synced 2024-12-22 13:52:25 +01:00
height_min/max --> y_min/max
This commit is contained in:
parent
6e25cabec0
commit
c429c83eee
12
init.lua
12
init.lua
@ -235,8 +235,8 @@ local oredefs = {
|
|||||||
oredef = {clust_scarcity = moreores_silver_chunk_size * moreores_silver_chunk_size * moreores_silver_chunk_size,
|
oredef = {clust_scarcity = moreores_silver_chunk_size * moreores_silver_chunk_size * moreores_silver_chunk_size,
|
||||||
clust_num_ores = moreores_silver_ore_per_chunk,
|
clust_num_ores = moreores_silver_ore_per_chunk,
|
||||||
clust_size = moreores_silver_chunk_size,
|
clust_size = moreores_silver_chunk_size,
|
||||||
height_min = moreores_silver_min_depth,
|
y_min = moreores_silver_min_depth,
|
||||||
height_max = moreores_silver_max_depth
|
y_max = moreores_silver_max_depth
|
||||||
},
|
},
|
||||||
tools = {
|
tools = {
|
||||||
pick = {
|
pick = {
|
||||||
@ -267,8 +267,8 @@ local oredefs = {
|
|||||||
oredef = {clust_scarcity = moreores_tin_chunk_size * moreores_tin_chunk_size * moreores_tin_chunk_size,
|
oredef = {clust_scarcity = moreores_tin_chunk_size * moreores_tin_chunk_size * moreores_tin_chunk_size,
|
||||||
clust_num_ores = moreores_tin_ore_per_chunk,
|
clust_num_ores = moreores_tin_ore_per_chunk,
|
||||||
clust_size = moreores_tin_chunk_size,
|
clust_size = moreores_tin_chunk_size,
|
||||||
height_min = moreores_tin_min_depth,
|
y_min = moreores_tin_min_depth,
|
||||||
height_max = moreores_tin_max_depth
|
y_max = moreores_tin_max_depth
|
||||||
},
|
},
|
||||||
tools = {},
|
tools = {},
|
||||||
},
|
},
|
||||||
@ -278,8 +278,8 @@ local oredefs = {
|
|||||||
oredef = {clust_scarcity = moreores_mithril_chunk_size * moreores_mithril_chunk_size * moreores_mithril_chunk_size,
|
oredef = {clust_scarcity = moreores_mithril_chunk_size * moreores_mithril_chunk_size * moreores_mithril_chunk_size,
|
||||||
clust_num_ores = moreores_mithril_ore_per_chunk,
|
clust_num_ores = moreores_mithril_ore_per_chunk,
|
||||||
clust_size = moreores_mithril_chunk_size,
|
clust_size = moreores_mithril_chunk_size,
|
||||||
height_min = moreores_mithril_min_depth,
|
y_min = moreores_mithril_min_depth,
|
||||||
height_max = moreores_mithril_max_depth
|
y_max = moreores_mithril_max_depth
|
||||||
},
|
},
|
||||||
tools = {
|
tools = {
|
||||||
pick = {
|
pick = {
|
||||||
|
Loading…
Reference in New Issue
Block a user