forked from mtcontrib/pipeworks
		
	add list rings to pipework inventories
This commit is contained in:
		| @@ -183,7 +183,14 @@ local function update_meta(meta, enabled) | |||||||
| 			default.gui_bg_img.. | 			default.gui_bg_img.. | ||||||
| 			default.gui_slots.. | 			default.gui_slots.. | ||||||
| 			default.get_hotbar_bg(0,7) .. | 			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 | 	-- toggling the button doesn't quite call for running a recipe change check | ||||||
| 	-- so instead we run a minimal version for infotext setting only | 	-- so instead we run a minimal version for infotext setting only | ||||||
|   | |||||||
| @@ -45,7 +45,8 @@ local function set_filter_formspec(data, meta) | |||||||
| 				 "Sequence slots Randomly", | 				 "Sequence slots Randomly", | ||||||
| 				 "Sequence slots by Rotation"}).. | 				 "Sequence slots by Rotation"}).. | ||||||
| 			exmatch_button.. | 			exmatch_button.. | ||||||
| 			"list[current_player;main;0,4.5;8,4;]" | 			"list[current_player;main;0,4.5;8,4;]" .. | ||||||
|  | 			"listring[]" | ||||||
| 	end | 	end | ||||||
| 	meta:set_string("formspec", formspec) | 	meta:set_string("formspec", formspec) | ||||||
| end | end | ||||||
|   | |||||||
| @@ -31,7 +31,21 @@ if pipeworks.enable_mese_tube then | |||||||
| 			"image[0,4;1,1;pipeworks_blue.png]".. | 			"image[0,4;1,1;pipeworks_blue.png]".. | ||||||
| 			"image[0,5;1,1;pipeworks_red.png]".. | 			"image[0,5;1,1;pipeworks_red.png]".. | ||||||
| 			buttons_formspec.. | 			buttons_formspec.. | ||||||
| 			"list[current_player;main;0,7;8,4;]") | 			"list[current_player;main;0,7;8,4;]" .. | ||||||
|  | 			"listring[current_player;main]" .. | ||||||
|  | 			"listring[current_player;main]" .. | ||||||
|  | 			"listring[context;line1]" .. | ||||||
|  | 			"listring[current_player;main]" .. | ||||||
|  | 			"listring[context;line2]" .. | ||||||
|  | 			"listring[current_player;main]" .. | ||||||
|  | 			"listring[context;line3]" .. | ||||||
|  | 			"listring[current_player;main]" .. | ||||||
|  | 			"listring[context;line4]" .. | ||||||
|  | 			"listring[current_player;main]" .. | ||||||
|  | 			"listring[context;line5]" .. | ||||||
|  | 			"listring[current_player;main]" .. | ||||||
|  | 			"listring[context;line6]" | ||||||
|  | 			) | ||||||
| 	end | 	end | ||||||
|  |  | ||||||
| 	pipeworks.register_tube("pipeworks:mese_tube", { | 	pipeworks.register_tube("pipeworks:mese_tube", { | ||||||
|   | |||||||
| @@ -28,7 +28,8 @@ minetest.register_node("pipeworks:trashcan", { | |||||||
| 				default.gui_bg_img.. | 				default.gui_bg_img.. | ||||||
| 				default.gui_slots.. | 				default.gui_slots.. | ||||||
| 				default.get_hotbar_bg(0,3) .. | 				default.get_hotbar_bg(0,3) .. | ||||||
| 				"list[current_player;main;0,3;8,4;]") | 				"list[current_player;main;0,3;8,4;]" .. | ||||||
|  | 				"listring[]") | ||||||
| 		meta:set_string("infotext", "Trash Can") | 		meta:set_string("infotext", "Trash Can") | ||||||
| 		meta:get_inventory():set_size("trash", 1) | 		meta:get_inventory():set_size("trash", 1) | ||||||
| 	end,  | 	end,  | ||||||
|   | |||||||
| @@ -14,7 +14,8 @@ local function set_wielder_formspec(data, meta) | |||||||
| 			"item_image[0,0;1,1;"..data.name_base.."_off]".. | 			"item_image[0,0;1,1;"..data.name_base.."_off]".. | ||||||
| 			"label[1,0;"..minetest.formspec_escape(data.description).."]".. | 			"label[1,0;"..minetest.formspec_escape(data.description).."]".. | ||||||
| 			"list[current_name;"..minetest.formspec_escape(data.wield_inv_name)..";"..((8-data.wield_inv_width)*0.5)..",1;"..data.wield_inv_width..","..data.wield_inv_height..";]".. | 			"list[current_name;"..minetest.formspec_escape(data.wield_inv_name)..";"..((8-data.wield_inv_width)*0.5)..",1;"..data.wield_inv_width..","..data.wield_inv_height..";]".. | ||||||
| 			"list[current_player;main;0,"..(2+data.wield_inv_height)..";8,4;]") | 			"list[current_player;main;0,"..(2+data.wield_inv_height)..";8,4;]" .. | ||||||
|  | 			"listring[]") | ||||||
| 	meta:set_string("infotext", data.description) | 	meta:set_string("infotext", data.description) | ||||||
| end | end | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user