From c9f09abc4e2b4107f24d4394f61896844e303f16 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 26 Jul 2021 16:42:38 +0200 Subject: [PATCH] [MIRROR] Fixes index table circuit component outputting a table rather than a list (#7062) * Fixes index table circuit component outputting a table rather than a list (#60348) Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com> * Fixes index table circuit component outputting a table rather than a list Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com> Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com> --- code/modules/wiremod/components/list/index_table.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/wiremod/components/list/index_table.dm b/code/modules/wiremod/components/list/index_table.dm index 9bfe8b70945..149adfa7eaf 100644 --- a/code/modules/wiremod/components/list/index_table.dm +++ b/code/modules/wiremod/components/list/index_table.dm @@ -22,7 +22,7 @@ received_table = add_input_port("Input", PORT_TYPE_TABLE) target_index = add_input_port("Index", PORT_TYPE_NUMBER) - output_list = add_output_port("Output", PORT_TYPE_TABLE) + output_list = add_output_port("Output", PORT_TYPE_LIST) /obj/item/circuit_component/index_table/Destroy() received_table = null