mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 06:13:17 -04:00
Update init.lua
This commit is contained in:
parent
26ca869cfa
commit
bfdd151287
1 changed files with 4 additions and 0 deletions
|
@ -89,6 +89,10 @@ minetest.register_chatcommand("home", {
|
||||||
description = S("Teleport you to your home point"),
|
description = S("Teleport you to your home point"),
|
||||||
privs = {home = true},
|
privs = {home = true},
|
||||||
func = function(name)
|
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
|
if sethome.go(name) then
|
||||||
return true, S("Teleported to home!")
|
return true, S("Teleported to home!")
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue