mirror of
https://github.com/minetest-mods/teleport-request.git
synced 2025-01-07 21:47:30 +01:00
Oops 😋
This commit is contained in:
parent
898a526379
commit
ff7d99bc3f
6
init.lua
6
init.lua
@ -343,20 +343,20 @@ minetest.register_chatcommand("tphr", {
|
|||||||
minetest.register_chatcommand("tpc", {
|
minetest.register_chatcommand("tpc", {
|
||||||
description = "Teleport to coordinates",
|
description = "Teleport to coordinates",
|
||||||
params = "<coordinates> | leave coordinates empty to see help message",
|
params = "<coordinates> | leave coordinates empty to see help message",
|
||||||
privs = {interact = true, tp_tpc = true},
|
privs = {interact = true, tp_tpc = true, tp = true},
|
||||||
func = tpc_send
|
func = tpc_send
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_chatcommand("tpj", {
|
minetest.register_chatcommand("tpj", {
|
||||||
description = "Teleport to relative position",
|
description = "Teleport to relative position",
|
||||||
params = "<axis> <distance> | leave empty to see help message",
|
params = "<axis> <distance> | leave empty to see help message",
|
||||||
privs = {interact = true, tp_tpc = true},
|
privs = {interact = true, tp_tpc = true, tp = true},
|
||||||
func = tpj
|
func = tpj
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_chatcommand("tpe", {
|
minetest.register_chatcommand("tpe", {
|
||||||
description = "Evade Enemy",
|
description = "Evade Enemy",
|
||||||
privs = {interact = true, tp_tpc = true},
|
privs = {interact = true, tp_tpc = true, tp = true},
|
||||||
func = tpe
|
func = tpe
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user