fix another mistake

This commit is contained in:
HybridDog 2015-05-05 20:03:42 +02:00
parent aa687f5d54
commit b1badd332b
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ local get_snow = function(pos)
local perlin1 = minetest.get_perlin(112,3, 0.5, 150)
local x = pos.x
local y = pos.z
if perlin1:get2d({x, y}) <= 0.53 then
if perlin1:get2d({x=x, y=y}) <= 0.53 then
return false
end