1
0
mirror of https://github.com/Splizard/minetest-mod-snow.git synced 2025-06-30 15:20:20 +02:00

Corrige des erreurs de syntaxe

This commit is contained in:
sys4-fr
2018-11-04 13:43:15 +01:00
parent 221c440034
commit 8f34ce940b
5 changed files with 14 additions and 14 deletions

View File

@ -67,9 +67,9 @@ end)
-- Christmas egg
if minetest.global_exists"skins" then
skins.add"character_snow_man"
end
if minetest.global_exists("skins") then
skins.add("character_snow_man")
end
-- Decorated Pine Leaves
@ -271,7 +271,7 @@ if not snow.disable_mapgen then
default.register_leafdecay{
trunks = {"default:tree"},
leaves = {"snow:apple", "snow:leaves"},
radius = minetest.get_mapgen_setting"mg_name" == "v6" and 2 or 3,
radius = minetest.get_mapgen_setting("mg_name") == "v6" and 2 or 3,
}
end