From d1d79f1adee47f10ed48b3ba03db9e7fc006a1d1 Mon Sep 17 00:00:00 2001 From: ThePython Date: Sun, 26 Mar 2023 16:14:32 -0700 Subject: [PATCH] Fixed listrings even more --- constructor.lua | 2 +- deconstructor.lua | 4 ++-- energy_collector.lua | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/constructor.lua b/constructor.lua index 747c3e4..bc87337 100644 --- a/constructor.lua +++ b/constructor.lua @@ -9,12 +9,12 @@ function get_element_constructor_formspec() "label[5,1;Output]", "list[context;dst;5,2;1,1;]", "list[current_player;main;0,5;8,4;]", + "listring[current_player;main]", "listring[context;src]", "listring[current_player;main]", "listring[context;fuel]", "listring[current_player;main]", "listring[context;dst]", - "listring[current_player;main]" } return table.concat(formspec, "") else diff --git a/deconstructor.lua b/deconstructor.lua index 34e9a7e..f4df4a2 100644 --- a/deconstructor.lua +++ b/deconstructor.lua @@ -9,10 +9,10 @@ function get_element_deconstructor_formspec() "label[5,1;Orb]", "list[context;dst;5,2;1,1;]", "list[current_player;main;0,5;8,4;]", - "listring[current_player;main]", "listring[context;main]", "listring[current_player;main]", - "listring[context;dst]" + "listring[context;dst]", + "listring[current_player;main]" } return table.concat(formspec, "") else diff --git a/energy_collector.lua b/energy_collector.lua index aea4abc..dc5f2b8 100644 --- a/energy_collector.lua +++ b/energy_collector.lua @@ -5,8 +5,8 @@ function get_energy_collector_formspec() "label[3,2;Orb]", "list[context;main;4,2;1,1;]", "list[current_player;main;0,5;8,4;]", - "listring[context;main]", - "listring[current_player;main]" + "listring[current_player;main]", + "listring[context;main]" } return table.concat(formspec, "") else