If angels' infinite ores is enabled with Bob's mods and the bob's mod setting for unsorted ore is disabled, infinite patches still give unsorted ore, which has no recipe UNLESS the setting for unsorted ore is on--which i suppose is a fix of sorts, but if it is off, it does result in resources with no recipe:
per dataUpdates in bob's ores:
if bobmods.ores.settings.UnsortedGemOre == true then
if data.raw["item-subgroup"]["bob-gems-ore"] then
data.raw.recipe["sort-gem-ore"].subgroup = "bob-gems-ore"
end
bobmods.lib.module.add_productivity_limitation("sort-gem-ore")
end
There are a few ways to fix this: conditional OR on first line to add recipe if Either "unsorted ore gem" is true, or if angels infinite ores is on. (result = mining angel's infinite ores will then require sorting, but regular patches will not)