mirror of
https://github.com/minetest-mods/teleport-request.git
synced 2025-01-08 14:07:28 +01:00
Working on areas protection.
Changing the way we detect areas and whether the player is allowed to teleport to a protected area.
This commit is contained in:
parent
80da1f0614
commit
f06658f319
8
init.lua
8
init.lua
@ -84,7 +84,6 @@ local function tpc_send(player,coordinates)
|
||||
|
||||
local target_coords={x=posx, y=posy, z=posz}
|
||||
|
||||
|
||||
-- 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
|
||||
@ -95,12 +94,11 @@ local function tpc_send(player,coordinates)
|
||||
else
|
||||
local protected = minetest.is_protected(target_coords,pname)
|
||||
if protected then
|
||||
local owner_string = areas:getNodeOwners(target_coords)
|
||||
if pname ~= owner_string then
|
||||
minetest.chat_send_player(player, "Error: These coordinates are within a protected area.")
|
||||
if not areas:canInteract(target_coords, pname) then
|
||||
local owners = areas:getNodeOwners(target_coords)
|
||||
minetest.chat_send_player(player,("Error: %s is protected by %s."):format(minetest.pos_to_string(target_coords),table.concat(owners, ", ")))
|
||||
return
|
||||
end
|
||||
else
|
||||
end
|
||||
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})
|
||||
|
Loading…
Reference in New Issue
Block a user