This mod revisits the early game of Factorio and pushes the electrification a bit further back by extending the Burner-Stage and inserting a new stage: Steam-Stage (buildings will be powered by steam).
Hi, thanks for keeping APM mods updated! :)
I have noticed that with Bob's mods + APM + AAI loaders, there are two different kinds of steam inserters: apm_steam_inserter and bob-steam-inserter. The one from apm is used for making the higher level inserters, while the other one is used for basic loaders. So I have to make both as they also get used in the higher tiers.
I did not yet find out how to automatically replace an item with another in all recipes, otherwise I'd try to fix it myself ...
I added this in prototypes/integrations/recipes/bobs.lua:
if apm.lib.utils.setting.get.starup('bobmods-logistics-inserteroverhaul') then
if mods["aai-loaders"] then
apm.lib.utils.recipe.ingredient.replace('aai-basic-loader', 'bob-steam-inserter', 'apm_steam_inserter')
apm.lib.utils.recipe.disable('bob-steam-inserter')
end
end
The recipe for bob-steam-inserter is not disabled though, but at least it is not used any more :)