diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-08-30 14:13:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-30 14:13:01 -0400 |
commit | 6e0e7c47d08225b8483540229ccb900a24cf4aed (patch) | |
tree | 35b6b14e3f1e0c08f1489ac5422d1875fa03d7c7 /autocrafter.lua | |
parent | a1ed3acd7a7b65825b2faba4cc81dd42b249ba44 (diff) | |
parent | 4fdf73fbcd992786cdbb60431e739cdcfc2362a2 (diff) | |
download | pipeworks-6e0e7c47d08225b8483540229ccb900a24cf4aed.tar pipeworks-6e0e7c47d08225b8483540229ccb900a24cf4aed.tar.gz pipeworks-6e0e7c47d08225b8483540229ccb900a24cf4aed.tar.bz2 pipeworks-6e0e7c47d08225b8483540229ccb900a24cf4aed.tar.xz pipeworks-6e0e7c47d08225b8483540229ccb900a24cf4aed.zip |
Merge pull request #150 from t4im/master
Add list rings and enable sorting tube reordering
Diffstat (limited to 'autocrafter.lua')
-rw-r--r-- | autocrafter.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/autocrafter.lua b/autocrafter.lua index 648a610..faf5381 100644 --- a/autocrafter.lua +++ b/autocrafter.lua @@ -183,7 +183,14 @@ local function update_meta(meta, enabled) default.gui_bg_img.. default.gui_slots.. default.get_hotbar_bg(0,7) .. - "list[current_player;main;0,7;8,4;]") + "list[current_player;main;0,7;8,4;]" .. + "listring[current_player;main]".. + "listring[context;src]" .. + "listring[context;dst]" .. + "listring[current_player;main]".. + "listring[context;recipe]" .. + "listring[context;output]" + ) -- toggling the button doesn't quite call for running a recipe change check -- so instead we run a minimal version for infotext setting only |