Optimize openfarming check
This commit is contained in:
parent
b129fb9494
commit
7f277db7ac
6
api.lua
6
api.lua
@ -132,7 +132,7 @@ function areas:getSmallestAreaAtPos(pos)
|
|||||||
return smallest_area, smallest_id
|
return smallest_area, smallest_id
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Checks if the area is unprotected, open, owned by player
|
-- Checks if the area is unprotected, open[farming], owned by player
|
||||||
-- or player is part of faction of [smallest] area at position.
|
-- or player is part of faction of [smallest] area at position.
|
||||||
function areas:canInteract(pos, name)
|
function areas:canInteract(pos, name)
|
||||||
if minetest.check_player_privs(name, self.adminPrivs) then
|
if minetest.check_player_privs(name, self.adminPrivs) then
|
||||||
@ -146,13 +146,13 @@ function areas:canInteract(pos, name)
|
|||||||
areas_list = self:getAreasAtPos(pos)
|
areas_list = self:getAreasAtPos(pos)
|
||||||
end
|
end
|
||||||
local owned = false
|
local owned = false
|
||||||
|
local player = minetest.get_player_by_name(name)
|
||||||
|
local node = minetest.get_node(pos).name
|
||||||
for _, area in pairs(areas_list) do
|
for _, area in pairs(areas_list) do
|
||||||
-- Player owns the area or area is open
|
-- Player owns the area or area is open
|
||||||
if area.owner == name or area.open then
|
if area.owner == name or area.open then
|
||||||
return true
|
return true
|
||||||
elseif area.openfarming then -- If area is openfarming
|
elseif area.openfarming then -- If area is openfarming
|
||||||
local player = minetest.get_player_by_name(name)
|
|
||||||
local node = minetest.get_node(pos).name
|
|
||||||
if player and minetest.registered_nodes[node] then
|
if player and minetest.registered_nodes[node] then
|
||||||
local wstack = player:get_wielded_item():get_name()
|
local wstack = player:get_wielded_item():get_name()
|
||||||
if wstack == "" then wstack = "hand" end
|
if wstack == "" then wstack = "hand" end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user