Screwdriver: Fix crash
If 'node_box' is nil 'node_box.type' causes a crash.
This commit is contained in:
parent
1d45b27c12
commit
6d67badcac
@ -67,7 +67,7 @@ screwdriver.handler = function(itemstack, user, pointed_thing, mode, uses)
|
|||||||
if not ndef or not ndef.paramtype2 == "facedir" or
|
if not ndef or not ndef.paramtype2 == "facedir" or
|
||||||
ndef.on_rotate == false or
|
ndef.on_rotate == false or
|
||||||
(ndef.drawtype == "nodebox" and
|
(ndef.drawtype == "nodebox" and
|
||||||
not ndef.node_box.type == "fixed") or
|
(ndef.node_box and ndef.node_box.type ~= "fixed")) or
|
||||||
node.param2 == nil then
|
node.param2 == nil then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user