April Update

doesn't compile in April update Failed compiling 'Recycle.cs':
1. There is no argument given that corresponds to the required parameter 'destroyPercent' of 'DroppedItemContainer.TakeFrom(ItemContainer[], float)' [CS7036]
(Recycle 23 line 446)

same issue here

Heres the fix:

Head to line 446 and replace it with:

 

container.TakeFrom(new[] { recycler.inventory }, 0f);

B4UbFRUldNvYcD2.png Nomad3211

Heres the fix:

Head to line 446 and replace it with:

 

container.TakeFrom(new[] { recycler.inventory }, 0f);

That worked, thanks!

Thank you.