turn off snow weather for v6 biome

This commit is contained in:
Arturas Norkus 2017-06-24 18:51:39 +03:00
parent 892cfa8b58
commit 1f07735c44
1 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ local np_humid = {
hw_utils.is_biome_frozen = function(position)
local mg_name = minetest.get_mapgen_setting("mg_name")
if mg_name == "v6" then
return true -- v6 not supported yet.
return false -- v6 not supported yet.
end
return hw_utils.is_biome_frozen_v7(position)
end
@ -116,7 +116,7 @@ end
hw_utils.is_biome_dry = function(position)
local mg_name = minetest.get_mapgen_setting("mg_name")
if mg_name == "v6" then
return true -- v6 not supported yet.
return false -- v6 not supported yet.
end
return hw_utils.is_biome_dry_v7(position)
end