Fix clouds speed parameter (MT 5.0.0)

This commit is contained in:
Wuzzy 2019-03-06 05:21:05 +01:00
parent 149d1450ef
commit 4c8433b41c
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ local initsky = function(player)
end
-- MC-style clouds: Layer 127, thickness 4, fly to the “West”
player:set_clouds({height=mcl_worlds.layer_to_y(127), speed={x=-2, y=0}, thickness=4, color="#FFF0FEF"})
player:set_clouds({height=mcl_worlds.layer_to_y(127), speed={x=-2, z=0}, thickness=4, color="#FFF0FEF"})
end
minetest.register_on_joinplayer(initsky)