Update Misc.cs #20

Merged
jadis0x merged 1 commits from patch-12 into master 2022-09-08 12:26:39 +00:00

View File

@@ -177,7 +177,7 @@ namespace DevourClient.Hacks
NolanVoiceOvers nolanVoiceOvers = UnityEngine.Object.FindObjectOfType<NolanVoiceOvers>();
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;
}