Increase the speed of drops falling?
FancyDrop creates these random drops and I don't want to configure everything to get it to work, I just want to have faster drop speeds. Is there a plugin for this?
Here you go.

// Faster supply drop falling.
private void OnEntitySpawned(BaseNetworkable entity)
{
	if (entity is SupplyDrop)
		entity.GetComponent<Rigidbody>().drag /= 2f;
}​