mirror of
https://github.com/t-affeldt/climate_api.git
synced 2024-11-13 22:20:26 +01:00
13 lines
220 B
Lua
13 lines
220 B
Lua
local state = minetest.get_mod_storage()
|
|
|
|
if not state:contains("heat_random") then
|
|
state:from_table({
|
|
heat_random = 1,
|
|
humidity_random = 1,
|
|
humidity_base = 50,
|
|
wind_x = 0.5,
|
|
wind_z = 0.5
|
|
})
|
|
end
|
|
|
|
return state |