1
0
mirror of https://github.com/SmallJoker/bitchange.git synced 2025-02-05 14:50:22 +01:00

Changing deprecated height_min

It should solve Field "height_min": Deprecated: new name is "y_min"
This commit is contained in:
Volkj 2016-11-05 17:07:04 +01:00 committed by GitHub
parent b49ba5dc14
commit b8c6ae6a43

View File

@ -122,7 +122,7 @@ minetest.register_ore({
clust_num_ores = 3, clust_num_ores = 3,
clust_size = 7, clust_size = 7,
height_max = -512, height_max = -512,
height_min = -18000, y_min = -18000,
}) })
minetest.register_ore({ minetest.register_ore({
@ -146,4 +146,4 @@ minetest.register_ore({
height_max = 28000, height_max = 28000,
height_min = -255, height_min = -255,
}) })
end end