Merge pull request #2 from tuedel/fix-typo

Fix wrong parenthesis in /set_weather chatcommand
This commit is contained in:
Till Affeldt 2020-06-01 01:29:51 +02:00 committed by GitHub
commit 80d661f33a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ minetest.register_chatcommand("set_weather", {
return
end
climate_mod.forced_weather[weather] = status
minetest.chat_send_player(playername, S("Weather @1 successfully set to @2"), weather, arguments[2])
minetest.chat_send_player(playername, S("Weather @1 successfully set to @2", weather, arguments[2]))
end
})