1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-25 02:00:37 +01:00

Merge Only allow rotating nodes that could be dug

This commit is contained in:
LeMagnesium 2014-12-14 23:26:23 +01:00
parent 9677e75c97
commit 1f419342a7

View File

@ -34,6 +34,10 @@ local function screwdriver_handler(itemstack, user, pointed_thing, mode)
return return
end end
if ndef.can_dig and not ndef.can_dig(pos, user) then
return
end
-- Set param2 -- Set param2
local n = node.param2 local n = node.param2
local axisdir = math.floor(n / 4) local axisdir = math.floor(n / 4)