Page 1 of 1

Adding an input slot to a factory

Posted: Wed Dec 11, 2024 7:17 am
by k8n
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:
12-10-2024, 23-15-30.png
12-10-2024, 23-15-30.png (999.64 KiB) Viewed 128 times
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",
...
}
}
```

Re: Adding an input slot to a factory

Posted: Thu Dec 12, 2024 12:48 am
by DaveMcW
You need to change the type to something with item slots. I recommend "car", since the inventory can be filtered to blueprints only.