mirror of
https://github.com/t-affeldt/regional_weather.git
synced 2025-07-18 00:10:39 +02:00
Improve heavy snow performance, add pedology support, add documentation
This commit is contained in:
2
init.lua
2
init.lua
@ -21,6 +21,7 @@ regional_weather.settings.puddles = get_setting_bool("puddles", true)
|
||||
regional_weather.settings.soil = get_setting_bool("soil", true)
|
||||
regional_weather.settings.fire = get_setting_bool("fire", true)
|
||||
regional_weather.settings.ice = get_setting_bool("ice", true)
|
||||
regional_weather.settings.pedology = get_setting_bool("pedology", true)
|
||||
regional_weather.settings.max_height = get_setting_number("max_height", 120)
|
||||
regional_weather.settings.min_height = get_setting_number("min_height", -50)
|
||||
|
||||
@ -55,4 +56,5 @@ dofile(modpath .. "/abms/puddle.lua")
|
||||
dofile(modpath .. "/abms/snow_cover.lua")
|
||||
dofile(modpath .. "/abms/fire.lua")
|
||||
dofile(modpath .. "/abms/ice.lua")
|
||||
dofile(modpath .. "/abms/pedology.lua")
|
||||
dofile(modpath .. "/abms/soil.lua")
|
||||
|
Reference in New Issue
Block a user