Rename set_weather to weather command

This commit is contained in:
Wuzzy 2017-02-20 19:24:23 +01:00
parent 45e45e9c66
commit f1cfee9c78
1 changed files with 4 additions and 4 deletions

View File

@ -132,9 +132,9 @@ minetest.register_privilege("weather_manager", {
})
-- Weather command definition. Set
minetest.register_chatcommand("set_weather", {
params = "<weather>",
description = "Changes weather by given param, parameter none will remove weather.",
minetest.register_chatcommand("weather", {
params = "none | rain | snow | thunder",
description = "Changes the weather to the specified parameter.",
privs = {weather_manager = true},
func = function(name, param)
if (param == "none") then
@ -172,4 +172,4 @@ if minetest.setting_getbool("weather_allow_override_nodes") then
if minetest.registered_nodes["default:meselamp"] then
minetest.override_item("default:meselamp", {sunlight_propagates = false})
end
end
end