diff --git a/Assets/Scripts/Behaviours/Vehicles/Vehicle_Radio.cs b/Assets/Scripts/Behaviours/Vehicles/Vehicle_Radio.cs index 06546f7c..259eca91 100644 --- a/Assets/Scripts/Behaviours/Vehicles/Vehicle_Radio.cs +++ b/Assets/Scripts/Behaviours/Vehicles/Vehicle_Radio.cs @@ -25,11 +25,12 @@ namespace SanAndreasUnity.Behaviours.Vehicles void Awake_Radio() { m_radioAudioSource = this.GetComponent(); + m_currentRadioStationIndex = Random.Range(0, RadioStation.stations.Length); } void Start_Radio() { - m_currentRadioStationIndex = Random.Range(0, RadioStation.stations.Length); + } void OnPedPreparedForVehicle_Radio(Ped ped, Seat seat)