Will this change make hoppers work? Probably not.

This commit is contained in:
ThePython 2023-03-25 17:49:22 -07:00
parent 1b9ce3179d
commit ac3c80eaba
2 changed files with 7 additions and 7 deletions

View File

@ -7,9 +7,9 @@ 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[context;fuel]",
"listring[current_player;main]",
"listring[context;dst]",
"listring[current_player;main]",
"listring[context;fuel]",
"listring[current_player;main]"
}
return table.concat(formspec, "")
@ -26,10 +26,10 @@ function get_element_deconstructor_formspec()
mcl_formspec.get_itemslot_bg(0,5,9,3),
"list[current_player;main;0,8.5;9,1;]",
mcl_formspec.get_itemslot_bg(0,8.5,9,1),
"listring[current_player;main]",
"listring[context;fuel]",
"listring[current_player;main]",
"listring[context;dst]",
"listring[current_player;main]"
"listring[context;dst]"
}
return table.concat(formspec, "")
end

View File

@ -5,13 +5,13 @@ function get_energy_collector_formspec()
"label[3,2;Orb]",
"list[context;dst;4,2;1,1;]",
"list[current_player;main;0,5;8,4;]",
"listring[current_player;main]",
"listring[context;dst]"
"listring[context;dst]",
"listring[current_player;main]"
}
return table.concat(formspec, "")
else
local formspec = {
"size[8,10]",
"size[9,10]",
"label[3,2;Orb]",
"list[context;dst;4,2;1,1;]",
mcl_formspec.get_itemslot_bg(4,2,1,1),