diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-04-13 20:50:39 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-04-13 20:50:39 -0400 |
commit | b8cd2f723c7c9079e631d7a4078862ff47b24915 (patch) | |
tree | 5b6edd73dcdc58ec8513ac291773cb1cd80272d3 /technic/machines/other | |
parent | b9bdb0241ea944cacb054e6768f4cda98dbcff94 (diff) | |
download | dreambuilder_modpack-b8cd2f723c7c9079e631d7a4078862ff47b24915.tar dreambuilder_modpack-b8cd2f723c7c9079e631d7a4078862ff47b24915.tar.gz dreambuilder_modpack-b8cd2f723c7c9079e631d7a4078862ff47b24915.tar.bz2 dreambuilder_modpack-b8cd2f723c7c9079e631d7a4078862ff47b24915.tar.xz dreambuilder_modpack-b8cd2f723c7c9079e631d7a4078862ff47b24915.zip |
update technic
Diffstat (limited to 'technic/machines/other')
-rw-r--r-- | technic/machines/other/constructor.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/technic/machines/other/constructor.lua b/technic/machines/other/constructor.lua index 9c64051..5847fdb 100644 --- a/technic/machines/other/constructor.lua +++ b/technic/machines/other/constructor.lua @@ -2,6 +2,7 @@ local S = technic.getter local function deploy_node(inv, slot_name, pos, node, machine_node) + if node.param2 > 3 then return end if node.name ~= "air" then if node.name == "ignore" or node.name == "default:lava_source" or @@ -162,6 +163,7 @@ local function make_constructor(mark, length) allow_metadata_inventory_put = technic.machine_inventory_put, allow_metadata_inventory_take = technic.machine_inventory_take, allow_metadata_inventory_move = technic.machine_inventory_move, + on_rotate = screwdriver.rotate_simple }) minetest.register_node("technic:constructor_mk"..mark.."_on", { @@ -180,6 +182,7 @@ local function make_constructor(mark, length) allow_metadata_inventory_put = technic.machine_inventory_put, allow_metadata_inventory_take = technic.machine_inventory_take, allow_metadata_inventory_move = technic.machine_inventory_move, + on_rotate = false }) end |