1
0
mirror of https://gitlab.com/rautars/weather_pack.git synced 2024-11-19 08:30:18 +01:00
weather_pack/rain/command.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
})