1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-07-06 16:20:22 +02:00

Update init.lua

This commit is contained in:
Zemtzov7
2022-11-20 00:39:48 +05:00
committed by GitHub
parent 26ca869cfa
commit bfdd151287

View File

@ -89,6 +89,10 @@ minetest.register_chatcommand("home", {
description = S("Teleport you to your home point"),
privs = {home = true},
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"
end
if sethome.go(name) then
return true, S("Teleported to home!")
end