[nalc_default] Change altitude nuages de 120 à 150 blocs

This commit is contained in:
Sys Quatre 2020-08-08 23:38:06 +02:00
부모 559e0414ab
커밋 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
)