Oops 😋

This commit is contained in:
Panquesito7 2019-07-08 20:30:16 -05:00 committed by GitHub
parent 898a526379
commit ff7d99bc3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -343,20 +343,20 @@ minetest.register_chatcommand("tphr", {
minetest.register_chatcommand("tpc", {
description = "Teleport to coordinates",
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
})
minetest.register_chatcommand("tpj", {
description = "Teleport to relative position",
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
})
minetest.register_chatcommand("tpe", {
description = "Evade Enemy",
privs = {interact = true, tp_tpc = true},
privs = {interact = true, tp_tpc = true, tp = true},
func = tpe
})