Skip to content

Commit

Permalink
Search Engine: Fix searching for signals
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomis committed Oct 14, 2020
1 parent fb8a9cc commit b180a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion factorio-search-engine_0.0.1/plugins/signals/signals.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ local plugin = {
local results = {}
tables.for_each(filtered_items, add_to_table(results, "item"))
tables.for_each(filtered_fluids, add_to_table(results, "fluid"))
tables.for_each(filtered_signals, add_to_table(results, "signal"))
tables.for_each(filtered_signals, add_to_table(results, "virtual-signal"))
return results
end,
options_render = function(context, results)
Expand Down

0 comments on commit b180a75

Please sign in to comment.