Return S(message) when running /home in irc/discord

(Supports translations)
This commit is contained in:
Zemtzov7 2022-11-20 00:52:47 +05:00 committed by GitHub
parent eb554a26bd
commit dc845b9f3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ minetest.register_chatcommand("home", {
func = function(name)
local player = minetest.get_player_by_name(name)
if not player then
return false, "This command can be executed in-game only"
return false, S("This command can be executed in-game only!")
end
if sethome.go(name) then
return true, S("Teleported to home!")