Module:Infobox Tools: Difference between revisions

Fixing the comma removal and adding the Equipment/ prefix to the links
(Add commas between the links created by linkify_equip_list)
(Fixing the comma removal and adding the Equipment/ prefix to the links)
Line 186:
temp_str = temp_str .. ',';
--Loop through the list and append link brackets and the value to the output
for w in temp_str:gmatch("(.-),") do output_str = output_str .. '[[Equipment/' .. w .. '|' .. w .. ']], ' end
--Remove the extra comma and space at the end
temp_stroutput_str = temp_stroutput_str:sub(1, -3);
return output_str;