Picture of the error. I have to have this mod as some of angel's mods require bobplates, does this mod argue at all with any of the 5dim mods?
This problem occurs when factorio starts building prototypes, also notable, should be that it is 100% this mod as my game starts without it. The notepad pulls up this for the prototypes that involve basic circuits.
in bobplates_0.14.0\prototypes\recipe\entity-recipe-updates.lua:
if data.raw.item["basic-circuit-board"] then
bobmods.lib.recipe.replace_ingredient("electrolyser", "electronic-circuit", "basic-circuit-board")
end
if data.raw.item["stone-pipe"] then
bobmods.lib.recipe.replace_ingredient("electrolyser", "pipe", "stone-pipe")
end
if data.raw.item["copper-pipe"] then
bobmods.lib.recipe.replace_ingredient("air-pump", "pipe", "copper-pipe")
bobmods.lib.recipe.replace_ingredient("water-pump", "pipe", "copper-pipe")
bobmods.lib.recipe.replace_ingredient("void-pump", "pipe", "copper-pipe")
end
if data.raw.item["steel-pipe"] then
bobmods.lib.recipe.replace_ingredient("chemical-furnace", "pipe", "steel-pipe")
end
if data.raw.item["bronze-pipe"] then
bobmods.lib.recipe.replace_ingredient("air-pump-2", "pipe", "bronze-pipe")
bobmods.lib.recipe.replace_ingredient("water-pump-2", "pipe", "bronze-pipe")
end
if data.raw.item["brass-pipe"] then
bobmods.lib.recipe.replace_ingredient("air-pump-3", "pipe", "brass-pipe")
bobmods.lib.recipe.replace_ingredient("water-pump-3", "pipe", "brass-pipe")
end
This is the only lua that ever mentions the basic-circuit board. So any ideas on how to fix this?