Page 1 of 1

Set Maximum Output of assembler?

Posted: Wed Jun 13, 2018 11:17 am
by ravenbs
Hello,

It seems the maximum possible output count of an assembler machine is 200.
If you set higher values in a recipe - it will be a max of 200
But I can not find, where this value is set nor how to increase it.

Anyone an idea?
Thank you.

Re: Set Maximum Output of assembler?

Posted: Wed Jun 13, 2018 3:58 pm
by Rseding91
There is no maximum output count of an assembling machine.

Are you sure the maximum stack size of the item isn't 200 that it's producing?

Re: Set Maximum Output of assembler?

Posted: Wed Jun 13, 2018 4:45 pm
by eradicator
He's right. I did a quick test and the assembler only produces $stack_size even if the recipe should produce more. I guess output slots don't have the "overstacking" ability of input slots?

Code: Select all

data.raw.recipe['iron-gear-wheel'].normal.result_count = 1000
test.png
test.png (164.4 KiB) Viewed 2803 times

Re: Set Maximum Output of assembler?

Posted: Thu Jun 14, 2018 8:30 am
by ravenbs
Maybe this is a bug? How to report it?

Re: Set Maximum Output of assembler?

Posted: Fri Jun 15, 2018 8:08 am
by bobingabout
ravenbs wrote:Maybe this is a bug? How to report it?
bug reporting subforum viewforum.php?f=7



So what I'm seeing out of this is... if the result count is higher than a single stack size, you only get a single stack's worth of output?

Re: Set Maximum Output of assembler?

Posted: Fri Jun 15, 2018 12:33 pm
by darkfrei
It stack size is 200, but you are need 400, then:

Code: Select all

results =
{
  {
    name = "iron-gear-wheel",
    amount = 200
  },
  {
    name = "iron-gear-wheel",
    amount = 200
  }
}
},
The same for ingredients, if ingredients amount is more than 65535.

Re: Set Maximum Output of assembler?

Posted: Mon Jun 18, 2018 8:52 am
by bobingabout
darkfrei wrote:The same for ingredients, if ingredients amount is more than 65535.
Except inserters only fill the first instance of an item...
I've received looots of bug reports due to duplicate input ingredients (and most of them were actually caused by mods that mod my mods, not my mods themselves) and the issues caused by inserters not filling them.

Re: Set Maximum Output of assembler?

Posted: Mon Jun 18, 2018 10:22 am
by darkfrei
bobingabout wrote:
darkfrei wrote:The same for ingredients, if ingredients amount is more than 65535.
Except inserters only fill the first instance of an item...
I've received looots of bug reports due to duplicate input ingredients (and most of them were actually caused by mods that mod my mods, not my mods themselves) and the issues caused by inserters not filling them.
Then we are need new mod for those mods modification!