minetest.register_privilege("weather", { description = "Change the weather", give_to_singleplayer = false }) -- Set weather minetest.register_chatcommand("setweather", { params = "", description = "Set weather to rain, snow or none", -- full description privs = {weather = true}, func = function(name, param) weather.state = param save_weather() end })