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.
Speed only applies to the first 2 slotsFixed
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.csTo 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); }); Thanks for reporting! This issue has been fixed in the upcoming v2.0.0 release, which is currently undergoing beta testing. Please try out the beta and provide feedback if you are interested.
https://umod.org/community/recycle-manager/44014-recycle-manager-200-beta
Locked automatically