Skip to content

Commit

Permalink
Scanner fix: Group crafting machines by name
Browse files Browse the repository at this point in the history
  • Loading branch information
LevFendi committed Oct 25, 2024
1 parent bff1892 commit cac68a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/scanner/backends/single-entity.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ mod.CraftingMachine = decl("fa.scanner.backends.CraftingMachine", {
subcategory_callback = function(ent)
local r = ent.get_recipe()
local rn = r and r.name or "<UNCONFIGURED>"
return cat2(ent.type, rn)
return cat2(ent.name, rn)
end,
})

Expand Down

0 comments on commit cac68a7

Please sign in to comment.