[nalc_default] Change altitude nuages de 120 à 150 blocs

このコミットが含まれているのは:
Sys Quatre 2020-08-08 23:38:06 +02:00
コミット 77a1f2000c
1個のファイルの変更5行の追加0行の削除

ファイルの表示

@ -26,6 +26,11 @@ minetest.register_on_joinplayer(
function(player)
player:hud_set_hotbar_image("hud_hotbar.png")
player:hud_set_hotbar_selected_image("hud_hotbar_selected.png")
-- Set cloud height
local cloud_params = player:get_clouds()
cloud_params.height = 150
player:set_clouds(cloud_params)
end
)