mirror of
https://gitlab.com/rautars/weather_pack.git
synced 2024-11-19 08:30:18 +01:00
10 lines
196 B
Lua
10 lines
196 B
Lua
|
|
|
|
minetest.register_chatcommand("cw", {
|
|
description = "normalize weather",
|
|
privs = {rain_manager = true},
|
|
func = function(name, param)
|
|
weather.state = 'clear'
|
|
save_weather()
|
|
end
|
|
}) |