mirror of
https://notabug.org/TenPlus1/protector.git
synced 2024-12-14 12:29:24 +01:00
Fixed positional bug
This commit is contained in:
parent
d069046c2e
commit
e0febf0dca
5
init.lua
5
init.lua
@ -184,10 +184,11 @@ function minetest.item_place(itemstack, placer, pointed_thing)
|
|||||||
if itemstack:get_name() == "protector:protect"
|
if itemstack:get_name() == "protector:protect"
|
||||||
or itemstack:get_name() == "protector:protect2" then
|
or itemstack:get_name() == "protector:protect2" then
|
||||||
local user = placer:get_player_name()
|
local user = placer:get_player_name()
|
||||||
if not protector.can_dig(protector.radius * 2, pointed_thing.above, user, true, 3) then
|
local pos = pointed_thing.under
|
||||||
|
if not protector.can_dig(protector.radius * 2, pos, user, true, 3) then
|
||||||
minetest.chat_send_player(user,
|
minetest.chat_send_player(user,
|
||||||
"Overlaps into another protected area")
|
"Overlaps into another protected area")
|
||||||
return protector.old_node_place(itemstack, placer, pointed_thing.above)
|
return protector.old_node_place(itemstack, placer, pos)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user