I'm trying to modify the factory buildings in the Factorissimo mod so that an inserter can insert a blueprint into the factory, which will then get built inside of it. It would look something like this:
How do I modify the factory prototype to allow interaction with inserters?
Right now, the mod models as factory as a "storage-tank" prototype (for some reason):
```
data:extend {
{
type = "storage-tank",
name = "factory-1",
...
}
}
```
Adding an input slot to a factory
Re: Adding an input slot to a factory
You need to change the type to something with item slots. I recommend "car", since the inventory can be filtered to blueprints only.