I run the following in my "mod of mods" mod, wondered if you might add this or something similar:
-- add glass to rail signals
if mods["crushing-industry"] then
recipe = data.raw["recipe"]["rail-signal"]
if recipe then
fdsl.modify_ingredient(recipe.name, "iron-plate", { amount = 4 })
fdsl.add_ingredient(recipe.name, { type = "item", name = "glass", amount = 1 })
if mods["quality"] then recycling.generate_recycling_recipe(recipe) end
end
recipe = data.raw["recipe"]["rail-chain-signal"]
if recipe then
fdsl.modify_ingredient(recipe.name, "iron-plate", { amount = 4 })
fdsl.add_ingredient(recipe.name, { type = "item", name = "glass", amount = 1 })
if mods["quality"] then recycling.generate_recycling_recipe(recipe) end
end
end