diff options
author | Tim <t4im@users.noreply.github.com> | 2015-01-30 16:41:10 +0100 |
---|---|---|
committer | Tim <t4im@users.noreply.github.com> | 2015-01-30 16:41:10 +0100 |
commit | 51c5b63ee7e3cd951a35fafca6e12a8129855909 (patch) | |
tree | a0b6bb64b9fabbddad6c4b4cfc77e55021d668cd | |
parent | 61af474116cf15eec3d78deae3c84eefbcd607a8 (diff) | |
download | pipeworks-51c5b63ee7e3cd951a35fafca6e12a8129855909.tar pipeworks-51c5b63ee7e3cd951a35fafca6e12a8129855909.tar.gz pipeworks-51c5b63ee7e3cd951a35fafca6e12a8129855909.tar.bz2 pipeworks-51c5b63ee7e3cd951a35fafca6e12a8129855909.tar.xz pipeworks-51c5b63ee7e3cd951a35fafca6e12a8129855909.zip |
fix crashing typo in sorting_tube formspec update
-rw-r--r-- | sorting_tubes.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sorting_tubes.lua b/sorting_tubes.lua index 92e9446..93859d4 100644 --- a/sorting_tubes.lua +++ b/sorting_tubes.lua @@ -104,7 +104,7 @@ if pipeworks.enable_mese_tube then return 0 end, allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) - qupdate_formspec(pos) -- For old tubes + update_formspec(pos) -- For old tubes local inv = minetest.get_meta(pos):get_inventory() inv:set_stack(from_list, from_index, ItemStack("")) return 0 |