weather_pack/rain/command.lua

10 lines
196 B
Lua
Raw Normal View History

minetest.register_chatcommand("cw", {
description = "normalize weather",
privs = {rain_manager = true},
func = function(name, param)
weather.state = 'clear'
save_weather()
end
})