diff --git a/DevourClient/Hacks/Misc.cs b/DevourClient/Hacks/Misc.cs index 2223f91..141b399 100644 --- a/DevourClient/Hacks/Misc.cs +++ b/DevourClient/Hacks/Misc.cs @@ -186,7 +186,7 @@ namespace DevourClient.Hacks NolanVoiceOvers nolanVoiceOvers = UnityEngine.Object.FindObjectOfType(); playRandomAudioClip.delay = 0f; - int num = Random.RandomRangeInt(0, 8); + int num = Random.RandomRangeInt(0, 10); switch (num) { case 0: @@ -213,6 +213,12 @@ namespace DevourClient.Hacks case 7: nolanVoiceOvers.laughClips.Play(); return; + case 8: + nolanVoiceOvers.PlayMoan(); + return; + case 9: + nolanVoiceOvers.Scream(); + return; default: return; }