mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 13:52:31 +01:00
height_min/max --> y_min/max
This commit is contained in:
parent
71b13ab0e8
commit
798a885807
@ -67,8 +67,8 @@ if technic.config:get_bool("enable_granite_generation") then
|
|||||||
mg.register_ore_sheet({
|
mg.register_ore_sheet({
|
||||||
name = "technic:granite",
|
name = "technic:granite",
|
||||||
wherein = "default:stone",
|
wherein = "default:stone",
|
||||||
height_min = -31000,
|
y_min = -31000,
|
||||||
height_max = -150,
|
y_max = -150,
|
||||||
tmin = 3,
|
tmin = 3,
|
||||||
tmax = 6,
|
tmax = 6,
|
||||||
threshhold = 0.4,
|
threshhold = 0.4,
|
||||||
@ -80,8 +80,8 @@ if technic.config:get_bool("enable_marble_generation") then
|
|||||||
mg.register_ore_sheet({
|
mg.register_ore_sheet({
|
||||||
name = "technic:marble",
|
name = "technic:marble",
|
||||||
wherein = "default:stone",
|
wherein = "default:stone",
|
||||||
height_min = -31000,
|
y_min = -31000,
|
||||||
height_max = -50,
|
y_max = -50,
|
||||||
tmin = 3,
|
tmin = 3,
|
||||||
tmax = 6,
|
tmax = 6,
|
||||||
threshhold = 0.4,
|
threshhold = 0.4,
|
||||||
|
Loading…
Reference in New Issue
Block a user