From cf663c9e754f9bfe3c44f204f7a488dcd1d9ee88 Mon Sep 17 00:00:00 2001 From: ChaosWormz Date: Tue, 24 Jan 2017 10:22:31 +0200 Subject: [PATCH] tpj and tpe require a priv --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 603b574..cf843b0 100644 --- a/init.lua +++ b/init.lua @@ -304,13 +304,13 @@ minetest.register_chatcommand("tpc", { minetest.register_chatcommand("tpj", { description = "Teleport to relative position", params = " | leave empty to see help message", - privs = {interact=true}, + privs = {interact=true,tp_tpc=true}, func = tpj }) minetest.register_chatcommand("tpe", { description = "Evade Enemy", - privs = {interact=true}, + privs = {interact=true,tp_tpc=true}, func = tpe })