From 80da1f06146a2b7f175cc64fa66d8fc4eb245fa9 Mon Sep 17 00:00:00 2001 From: Robbie Ferguson Date: Fri, 13 May 2016 12:03:18 -0400 Subject: [PATCH] Update init.lua Test fix for admin priv --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 40cc286..98554a1 100644 --- a/init.lua +++ b/init.lua @@ -88,7 +88,7 @@ local function tpc_send(player,coordinates) -- If the area is protected, reject the user's request to teleport to these coordinates -- In future release we'll actually query the player who owns the area, if they're online, and ask for their permission. -- Admin user (priv "tp_admin") overrides all protection - if minetest.check_player_privs(user.get_player_name(user), {tp_admin=true}) then + if minetest.check_player_privs(pname, {tp_admin=true}) then minetest.chat_send_player(player, 'Teleporting to '..posx..','..posy..','..posz) minetest.sound_play("tps_portal", {pos = target_coords, gain = 1.0, max_hear_distance = 10}) pname:setpos(target_coords)