diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-03-28 19:06:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-28 19:06:21 -0400 |
commit | b46231f543f1e57cfc3b35249f31a42945435493 (patch) | |
tree | 48bc5493bba3e98592eebb2ea6c6a79de0318d39 | |
parent | 64b2611d8adbbc07bb92315eca9d71b74ea51756 (diff) | |
parent | c15023a5d13e14eaf25ff88b76ea49c7873afb63 (diff) | |
download | pipeworks-b46231f543f1e57cfc3b35249f31a42945435493.tar pipeworks-b46231f543f1e57cfc3b35249f31a42945435493.tar.gz pipeworks-b46231f543f1e57cfc3b35249f31a42945435493.tar.bz2 pipeworks-b46231f543f1e57cfc3b35249f31a42945435493.tar.xz pipeworks-b46231f543f1e57cfc3b35249f31a42945435493.zip |
Merge pull request #165 from cheapie/master
Tweak listring behavior of autocrafter
-rw-r--r-- | autocrafter.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/autocrafter.lua b/autocrafter.lua index 738f3f2..f120953 100644 --- a/autocrafter.lua +++ b/autocrafter.lua @@ -186,10 +186,9 @@ local function update_meta(meta, enabled) "list[current_player;main;0,8;8,4;]" .. "listring[current_player;main]".. "listring[context;src]" .. - "listring[context;dst]" .. "listring[current_player;main]".. - "listring[context;recipe]" .. - "listring[context;output]" + "listring[context;dst]" .. + "listring[current_player;main]" if minetest.get_modpath("digilines") then fs = fs.."field[1,3.5;4,1;channel;Channel;${channel}]" fs = fs.."button_exit[5,3.2;2,1;save;Save]" |