mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 05:42:33 +01:00
parent
11e43ffe13
commit
0f7810e538
@ -61,6 +61,9 @@ local function set_injector_formspec(meta)
|
|||||||
(is_stack and
|
(is_stack and
|
||||||
"button[0,1;2,1;mode_item;"..S("Stackwise").."]" or
|
"button[0,1;2,1;mode_item;"..S("Stackwise").."]" or
|
||||||
"button[0,1;2,1;mode_stack;"..S("Itemwise").."]")..
|
"button[0,1;2,1;mode_stack;"..S("Itemwise").."]")..
|
||||||
|
(meta:get_int("public") == 1 and
|
||||||
|
"button[2,1;2,1;mode_private;"..S("Public").."]" or
|
||||||
|
"button[2,1;2,1;mode_public;"..S("Private").."]")..
|
||||||
"list[current_name;main;0,2;8,2;]"..
|
"list[current_name;main;0,2;8,2;]"..
|
||||||
"list[current_player;main;0,5;8,4;]"..
|
"list[current_player;main;0,5;8,4;]"..
|
||||||
"listring[]"..
|
"listring[]"..
|
||||||
@ -123,6 +126,9 @@ minetest.register_node("technic:injector", {
|
|||||||
if fields.mode_item then meta:set_string("mode", "single items") end
|
if fields.mode_item then meta:set_string("mode", "single items") end
|
||||||
if fields.mode_stack then meta:set_string("mode", "whole stacks") end
|
if fields.mode_stack then meta:set_string("mode", "whole stacks") end
|
||||||
|
|
||||||
|
if fields.mode_private then meta:set_int("public", 0) end
|
||||||
|
if fields.mode_public then meta:set_int("public", 1) end
|
||||||
|
|
||||||
if fields["fs_helpers_cycling:0:splitstacks"]
|
if fields["fs_helpers_cycling:0:splitstacks"]
|
||||||
or fields["fs_helpers_cycling:1:splitstacks"] then
|
or fields["fs_helpers_cycling:1:splitstacks"] then
|
||||||
if not pipeworks.may_configure(pos, sender) then return end
|
if not pipeworks.may_configure(pos, sender) then return end
|
||||||
|
Loading…
Reference in New Issue
Block a user