update command.lua

save_weather() does not exist anymore
This commit is contained in:
theFox6 2018-04-29 17:26:55 +02:00
parent 1c47f180fc
commit 299f29824e
1 changed files with 0 additions and 2 deletions

View File

@ -17,7 +17,6 @@ minetest.register_chatcommand("setweather", {
minetest.chat_send_player(name, "avalible weather types: "..types)
else
weather.type = param
save_weather()
end
end
})
@ -40,7 +39,6 @@ minetest.register_chatcommand("setwind", {
end
if x and z then
weather.wind = vector.new(x,0,z)
save_weather()
else
minetest.chat_send_player(name, param.." are not two comma seperated numbers")
end