Speed only applies to the first 2 slotsFixed

Speed only applies to the first 2 slots then reverts to default 5 seconds. In addition the first few uses will recycle slots 1 and 2 at same time.

Can confirm. Loaded up recycler with 1 of the same item in each slot, config is set to 2 seconds.  6 slots, 12 seconds is expected.  24 seconds was the result.

Merged post

I fixed this for myself, it was quite easy.  Change this:

timer.Once(0.1f, () => { recycler.Invoke("RecycleThink", recycleTime); });
line 253 RecycleManager.cs

To what Facepunch uses in their Recycler class but using the float from the config (recycleTime):
timer.Once(0.1f, () => { recycler.InvokeRepeating(new Action(recycler.RecycleThink), recycleTime, recycleTime); });
Locked automatically