1
0
mirror of https://github.com/mt-mods/biome_lib.git synced 2024-09-28 07:30:21 +02:00

fix deprecated function call

This commit is contained in:
Vanessa Dannenberg 2020-04-15 16:59:40 -04:00
parent a96f015ce9
commit 5a910875af

View File

@ -85,7 +85,7 @@ biome_lib.perlin_humidity = PerlinNoise(humidity_seeddiff, humidity_octaves, hum
-- Local functions
local function get_biome_data(pos, perlin_fertile)
local fertility = perlin_fertile:get2d({x=pos.x, y=pos.z})
local fertility = perlin_fertile:get_2d({x=pos.x, y=pos.z})
if type(minetest.get_biome_data) == "function" then
local data = minetest.get_biome_data(pos)