From a6d88f627301483b981a0771148ca7cd76afe721 Mon Sep 17 00:00:00 2001 From: Jadis <49281043+jadis0x@users.noreply.github.com> Date: Thu, 8 Sep 2022 13:07:48 +0300 Subject: [PATCH] Update Misc.cs --- DevourClient/Hacks/Misc.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/DevourClient/Hacks/Misc.cs b/DevourClient/Hacks/Misc.cs index 75ce353..fdd0f6d 100644 --- a/DevourClient/Hacks/Misc.cs +++ b/DevourClient/Hacks/Misc.cs @@ -177,7 +177,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: @@ -204,6 +204,12 @@ namespace DevourClient.Hacks case 7: nolanVoiceOvers.laughClips.Play(); return; + case 8: + nolanVoiceOvers.PlayMoan(); + return; + case 9: + nolanVoiceOvers.Scream(); + return; default: return; }