diff --git a/Assets/Scripts/ZombieController.cs b/Assets/Scripts/ZombieController.cs index 74cb1bf..c37c25b 100644 --- a/Assets/Scripts/ZombieController.cs +++ b/Assets/Scripts/ZombieController.cs @@ -75,7 +75,7 @@ public class ZombieController : MonoBehaviour private AudioClip PickSfx() { - return sfx[UnityEngine.Random.Range(0, sfx.Length)]; + return sfx[Random.Range(0, sfx.Length)]; } private void PlaySfx()