Supply drop normal speed?

Hi,

Great plugin; just wondering - how can I make the supply drop height/speed behaviour be the same as vanilla airdrops?
Planes seem to fly lower, and drops come down really fast. I tried setting drag to 1.0 but that didn't fix it.

rb.drag = Mathf.Clamp(config.SupplyDrop.Drag, 0.1f, 1f);

looks like this value was modified. the default value is 3f now instead of 1f. fixed in next update

nivex
rb.drag = Mathf.Clamp(config.SupplyDrop.Drag, 0.1f, 1f);

looks like this value was modified. the default value is 3f now instead of 1f. fixed in next update

Thanks!